File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
apps/existing_database/management/commands Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -532,11 +532,11 @@ def parse_project_name(
532532def parse_project_status (existing_project : existing_db_models .Project ) -> ProjectStatusEnum :
533533 assert existing_project .status is not None
534534 return {
535- "inactive" : ProjectStatusEnum .PAUSED ,
535+ "inactive" : ProjectStatusEnum .DISCARDED ,
536536 "active" : ProjectStatusEnum .PUBLISHED ,
537537 "private_active" : ProjectStatusEnum .PUBLISHED ,
538538 "private_finished" : ProjectStatusEnum .FINISHED ,
539- "private_inactive" : ProjectStatusEnum .PAUSED ,
539+ "private_inactive" : ProjectStatusEnum .DISCARDED ,
540540 "finished" : ProjectStatusEnum .FINISHED ,
541541 "archived" : ProjectStatusEnum .WITHDRAWN ,
542542 }[existing_project .status ]
You can’t perform that action at this time.
0 commit comments