Remove engagements

We are not using this anymore!
This commit is contained in:
Jorge Manrubia
2025-12-19 13:10:11 +01:00
committed by Jorge Manrubia
parent e34716a537
commit 6d05ab428e
6 changed files with 18 additions and 50 deletions
@@ -1,18 +0,0 @@
class Cards::EngagementsController < ApplicationController
include CardScoped
def create
case params[:engagement]
when "doing"
@card.engage
when "on_deck"
@card.move_to_on_deck
end
render_card_replacement
end
def destroy
@card.reconsider
render_card_replacement
end
end