Files
fizzy/app/controllers/columns/cards/drops/not_nows_controller.rb
T
2025-09-26 12:47:12 +02:00

10 lines
272 B
Ruby

class Columns::Cards::Drops::NotNowsController < ApplicationController
include CardScoped
def create
@card.postpone
render turbo_stream: turbo_stream.replace("not-now", partial: "collections/show/not_now", locals: { collection: @card.collection })
end
end