Flowdock
method

call

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: Middleware
call(env) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 16
      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.content_security_policy
          nonce = request.content_security_policy_nonce
          context = request.controller_instance || request
          headers[header_name(request)] = policy.build(context, nonce)
        end

        response
      end
Register or log in to add new notes.