Files
fizzy/app/controllers/concerns/bubble_scoped.rb
T
2024-09-18 13:09:06 -04:00

13 lines
203 B
Ruby

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