-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Save form data to TaskProgress and add filtered list endpoint * Improve updates to TaskProgress and abort method during task * Improve progress polling in web client * Refactor forms to use new TaskInfo component for TaskProgress handling * Read form defaults from project file if available * Add task messages for deepssm progress and fixed form data * Add disabled prop for task-info component * Update bad double qoutes * Add more initial progress message updates to deepssm task * remove whitespace --------- Co-authored-by: Jake Wagoner <jakewagoneredu@gmail.com>
- Loading branch information
Showing
16 changed files
with
778 additions
and
681 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
shapeworks_cloud/core/migrations/0041_taskprogress_formdata.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.2.25 on 2024-04-22 16:15 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core', '0040_deepssm_ui_updates'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='taskprogress', | ||
name='form_data', | ||
field=models.JSONField(blank=True, null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.