script to modify all model json files to use full path for model id. Also removes process_group_id

This commit is contained in:
mike cullerton 2022-11-08 12:38:51 -05:00
parent 46ea75860e
commit 812029cf9c
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
"""Updates all JSON files, based on the current state of BPMN_SPEC_ABSOLUTE_DIR"""
from spiffworkflow_backend import get_hacked_up_app_for_script
from spiffworkflow_backend.services.process_model_service import ProcessModelService
def main() -> None:
"""Main."""
app = get_hacked_up_app_for_script()
with app.app_context():
groups = ProcessModelService().get_process_groups()
for group in groups:
for process_model in group.process_models:
update_items = {
'process_group_id': '',
'id': f"{group.id}/{process_model.id}"
}
ProcessModelService().update_spec(process_model, update_items)
if __name__ == "__main__":
main()