BigW Consortium Gitlab

Commit 09af8833 by Rémy Coutable

Merge branch 'permit-uploadedfile-scalar' into 'master'

Monkey-patch StrongParameters for ::UploadedFile Closes gitlab-ee#1451 See merge request !8299
parents db396d5b f4a2d33a
Rails.application.configure do |config|
config.middleware.use(Gitlab::Middleware::Multipart)
end
module Gitlab
module StrongParameterScalars
GITLAB_PERMITTED_SCALAR_TYPES = [::UploadedFile]
def permitted_scalar?(value)
super || GITLAB_PERMITTED_SCALAR_TYPES.any? { |type| value.is_a?(type) }
end
end
end
module ActionController
class Parameters
prepend Gitlab::StrongParameterScalars
end
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment