method
call
v7.0.0 -
Show latest stable
- Class:
ActionDispatch::PermissionsPolicy::Middleware
call(env)public
No documentation available.
# File actionpack/lib/action_dispatch/http/permissions_policy.rb, line 20
def call(env)
request = ActionDispatch::Request.new(env)
_, headers, _ = response = @app.call(env)
return response unless html_response?(headers)
return response if policy_present?(headers)
if policy = request.permissions_policy
headers[POLICY] = policy.build(request.controller_instance)
end
if policy_empty?(policy)
headers.delete(POLICY)
end
response
end