From fd1ea18cbcd4a7b940bafc9926ec051815f8f4be Mon Sep 17 00:00:00 2001 From: Aaron Louie Date: Tue, 28 Jan 2020 13:25:54 -0500 Subject: [PATCH] Adds name to example workflow specs --- example_data.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/example_data.py b/example_data.py index 105b331e..07bf5cdd 100644 --- a/example_data.py +++ b/example_data.py @@ -33,14 +33,17 @@ class ExampleDataLoader: workflow_specifications = \ self.create_spec(id="random_fact", + name="random_fact", display_name="Random Fact Generator", description='Displays a random fact about a topic of your choosing.') workflow_specifications += \ self.create_spec(id="two_forms", + name="two_forms", display_name="Two dump questions on two separate tasks", description='the name says it all') workflow_specifications += \ self.create_spec(id="decision_table", + name="decision_table", display_name="Form with Decision Table", description='the name says it all') @@ -48,12 +51,13 @@ class ExampleDataLoader: all_data = studies + workflow_specifications return all_data - def create_spec(self, id, display_name, description): + def create_spec(self, id, name, display_name, description): """Assumes that a directory exists in static/bpmn with the same name as the given id. further assumes that the [id].bpmn is the primary file for the workflow. returns an array of data models to be added to the database.""" models = [] spec = WorkflowSpecModel(id=id, + name=name, display_name=display_name, description=description) models.append(spec)