Files
fizzy/app/controllers/cards/engagements_controller.rb
T
2025-04-09 14:50:58 +02:00

14 lines
207 B
Ruby

class Cards::EngagementsController < ApplicationController
include CardScoped
def create
@card.engage
redirect_to @card
end
def destroy
@card.reconsider
redirect_to @card
end
end