Files
fizzy/app/controllers/bubbles/pops_controller.rb
T
2025-04-04 10:59:53 +02:00

14 lines
264 B
Ruby

class Bubbles::PopsController < ApplicationController
include BubbleScoped, BucketScoped
def create
@bubble.pop!(user: Current.user, reason: params[:reason])
redirect_to @bubble
end
def destroy
@bubble.unpop
redirect_to @bubble
end
end