-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #417 from NASA-IMPACT/410-adding-additional-status…
…-on-the-curation-app Adding additional status options for the curation webapp
- Loading branch information
Showing
16 changed files
with
293 additions
and
80 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
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
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
37 changes: 37 additions & 0 deletions
37
sde_collections/migrations/0032_collection_workflow_status.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,37 @@ | ||
# Generated by Django 4.2.3 on 2023-10-06 15:56 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("sde_collections", "0031_candidateurl_is_pdf"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="collection", | ||
name="workflow_status", | ||
field=models.IntegerField( | ||
choices=[ | ||
(1, "Research in Progress"), | ||
(2, "Config Created"), | ||
(3, "Engineering in Progress"), | ||
(4, "Engineering Completed"), | ||
(5, "URLs Generated and Ready to Curate"), | ||
(6, "Curation in Progress"), | ||
(7, "Curated"), | ||
(8, "Curation Code Reviewed"), | ||
(9, "Test Deployment Completed"), | ||
(10, "Test Indexing Completed"), | ||
(11, "Test Quality Checks in Progress"), | ||
(12, "Test Quality Checks Completed"), | ||
(13, "Production Deployment Completed"), | ||
(14, "Production Indexing Completed"), | ||
(15, "Production Quality Checks in Progress"), | ||
(16, "Production Quality Checks Completed"), | ||
], | ||
default=1, | ||
), | ||
), | ||
] |
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
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
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.