Files
fizzy/app/controllers/bubbles/pops_controller.rb
T
Kevin McConnell dac2611c57 Auto-pop bubbles
2025-02-12 13:20:05 +00:00

14 lines
239 B
Ruby

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