Add publish/draft/cancel buttons to form

This commit is contained in:
Kevin McConnell
2025-02-06 17:54:24 +00:00
parent 469dbd0ba5
commit 70f7f100a9
2 changed files with 25 additions and 2 deletions
+7 -2
View File
@@ -23,7 +23,8 @@ class BubblesController < ApplicationController
def destroy
@bubble.destroy!
redirect_to bubbles_path(bucket_ids: [ @bubble.bucket ]), notice: "Bubble deleted"
redirect_to bubbles_path(bucket_ids: [ @bubble.bucket ]), notice: deleted_notice
end
def update
@@ -41,6 +42,10 @@ class BubblesController < ApplicationController
end
def bubble_params
params.expect(bubble: [ :title, :color, :due_on, :image, tag_ids: [] ])
params.expect(bubble: [ :status, :title, :color, :due_on, :image, tag_ids: [] ])
end
def deleted_notice
"Bubble deleted" unless @bubble.creating?
end
end