Files
fizzy/app/controllers/concerns/collection_scoped.rb
T
2025-04-09 14:50:58 +02:00

13 lines
231 B
Ruby

module CollectionScoped
extend ActiveSupport::Concern
included do
before_action :set_collection
end
private
def set_collection
@collection = Current.user.collections.find(params[:collection_id])
end
end