Files
fizzy/app/controllers/bubbles/pins_controller.rb
T
Jason Zimdars 28a569c49b Tickets
2025-03-17 21:24:08 -05:00

17 lines
355 B
Ruby

class Bubbles::PinsController < ApplicationController
include BubbleScoped, BucketScoped
def show
end
def create
@bubble.set_pinned(Current.user, true)
redirect_to bucket_bubble_pin_path(@bucket, @bubble)
end
def destroy
@bubble.set_pinned(Current.user, false)
redirect_to bucket_bubble_pin_path(@bucket, @bubble)
end
end