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

12 lines
210 B
Ruby
Raw Normal View History

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