This commit is contained in:
Jason Zimdars
2025-03-03 16:17:54 -08:00
parent 9a6d73b4d0
commit 28a569c49b
98 changed files with 1688 additions and 829 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ class WorkflowsController < ApplicationController
def create
@workflow = Current.account.workflows.create! workflow_params
# FIXME: this should definitely change.
%w[ Triage WIP On-hold ].each { |name| @workflow.stages.create! name: name }
[ "Maybe?", "Not now", "Done" ].each { |name| @workflow.stages.create! name: name }
redirect_to workflows_path
end