Methods
C
Constants
NONCE = "action_dispatch.content_security_policy_nonce".freeze
 
NONCE_GENERATOR = "action_dispatch.content_security_policy_nonce_generator".freeze
 
POLICY = "action_dispatch.content_security_policy".freeze
 
POLICY_REPORT_ONLY = "action_dispatch.content_security_policy_report_only".freeze
 
Instance Public methods
content_security_policy()
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 58
def content_security_policy
  get_header(POLICY)
end
content_security_policy=(policy)
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 62
def content_security_policy=(policy)
  set_header(POLICY, policy)
end
content_security_policy_nonce()
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 82
def content_security_policy_nonce
  if content_security_policy_nonce_generator
    if nonce = get_header(NONCE)
      nonce
    else
      set_header(NONCE, generate_content_security_policy_nonce)
    end
  end
end
content_security_policy_nonce_generator()
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 74
def content_security_policy_nonce_generator
  get_header(NONCE_GENERATOR)
end
content_security_policy_nonce_generator=(generator)
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 78
def content_security_policy_nonce_generator=(generator)
  set_header(NONCE_GENERATOR, generator)
end
content_security_policy_report_only()
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 66
def content_security_policy_report_only
  get_header(POLICY_REPORT_ONLY)
end
content_security_policy_report_only=(value)
# File actionpack/lib/action_dispatch/http/content_security_policy.rb, line 70
def content_security_policy_report_only=(value)
  set_header(POLICY_REPORT_ONLY, value)
end