Files
fizzy/app/helpers/workflows_helper.rb
T
2024-10-23 17:32:34 -06:00

12 lines
460 B
Ruby

module WorkflowsHelper
def link_to_stage_picker(bubble, workflow)
link_to workflow.name, new_bucket_bubble_stage_picker_path(bubble.bucket, bubble, workflow_id: workflow)
end
def button_to_set_stage(bubble, stage)
button_to stage.name, bucket_bubble_stagings_path(bubble.bucket, bubble, stage_id: stage),
method: :post, class: [ "btn btn--small", { "fill-selected": stage == bubble.stage } ],
data: { turbo_frame: "_top" }
end
end