Files
fizzy/app/controllers/cards/not_nows_controller.rb
T
2025-09-26 11:14:02 +02:00

8 lines
146 B
Ruby

class Cards::NotNowsController < ApplicationController
include CardScoped
def create
@card.postpone
render_card_replacement
end
end