5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-04 17:05:45 +00:00
panel/app/controllers/concerns/active_storage/authenticated_direct_uploads_controller.rb

12 lines
210 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
module ActiveStorage
module AuthenticatedDirectUploadsController
extend ActiveSupport::Concern
included do
before_action :authenticate_usuarie!
end
end
end