Files
fizzy/app/controllers/cards/engagements_controller.rb
T
2025-04-17 15:20:27 +02:00

14 lines
219 B
Ruby

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