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

10 lines
288 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", method: :morph, locals: { collection: @card.collection })
end
end