Files
fizzy/app/controllers/bubbles/watches_controller.rb
T
2025-04-06 19:22:40 +02:00

14 lines
281 B
Ruby

class Bubbles::WatchesController < ApplicationController
include BubbleScoped
def create
@bubble.watch_by Current.user
redirect_to bubble_watch_path(@bubble)
end
def destroy
@bubble.unwatch_by Current.user
redirect_to bubble_watch_path(@bubble)
end
end