Files
fizzy/app/controllers/cards/not_nows_controller.rb
T
2025-12-10 09:23:52 +01:00

13 lines
248 B
Ruby

class Cards::NotNowsController < ApplicationController
include CardScoped
def create
@card.postpone
respond_to do |format|
format.turbo_stream { render_card_replacement }
format.json { head :no_content }
end
end
end