5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-02 14:06:07 +00:00
panel/app/controllers/concerns/active_storage/authenticated_direct_uploads_controller.rb
f 3bcdc5a00f autenticar la subida de archivos
activestorage permite subida de archivos sin autenticación!
2021-02-28 11:00:48 -03:00

12 lines
210 B
Ruby

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