No need for script.

This commit is contained in:
mike cullerton 2022-11-18 14:17:31 -05:00
parent 2267351ce5
commit afc89fc620
1 changed files with 0 additions and 22 deletions

View File

@ -1,22 +0,0 @@
"""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_process_model(process_model, update_items)
if __name__ == "__main__":
main()