Files
fizzy/app/controllers/concerns/bubble_scoped.rb
T
2024-09-13 19:16:36 -04:00

13 lines
193 B
Ruby

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