Files
fizzy/app/controllers/concerns/bubble_scoped.rb
T
2024-09-24 15:32:44 -04:00

13 lines
202 B
Ruby

module BubbleScoped
extend ActiveSupport::Concern
included do
before_action :set_bubble
end
private
def set_bubble
@bubble = @bucket.bubbles.find(params[:bubble_id])
end
end