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

14 lines
291 B
Ruby

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