Files
fizzy/app/controllers/bubbles/engagements_controller.rb
T
2025-04-03 13:46:29 +02:00

14 lines
233 B
Ruby

class Bubbles::EngagementsController < ApplicationController
include BubbleScoped, BucketScoped
def create
@bubble.engage
redirect_to @bubble
end
def destroy
@bubble.reconsider
redirect_to @bubble
end
end