method
apply_mappings
v6.1.7.7 -
Show latest stable
- Class:
ActionDispatch::ContentSecurityPolicy
apply_mappings(sources)private
No documentation available.
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 219
def apply_mappings(sources)
sources.map do |source|
case source
when Symbol
apply_mapping(source)
when String, Proc
source
else
raise ArgumentError, "Invalid content security policy source: #{source.inspect}"
end
end
end