Files
fizzy/app/controllers/bubbles/pops_controller.rb
T
2024-10-19 19:48:31 -07:00

14 lines
219 B
Ruby

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