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

14 lines
265 B
Ruby

class Cards::WatchesController < ApplicationController
include CardScoped
def create
@card.watch_by Current.user
redirect_to card_watch_path(@card)
end
def destroy
@card.unwatch_by Current.user
redirect_to card_watch_path(@card)
end
end