Sha256: 9c7ec848f2b1495f925682101fd75e3dd2a6713cf9829e31526fa70cfb9519e1
Contents?: true
Size: 1.3 KB
Versions: 14
Compression:
Stored size: 1.3 KB
Contents
# frozen_string_literal: true module ActionController # :nodoc: module ContentSecurityPolicy # TODO: Documentation extend ActiveSupport::Concern include AbstractController::Helpers include AbstractController::Callbacks included do helper_method :content_security_policy? helper_method :content_security_policy_nonce end module ClassMethods def content_security_policy(enabled = true, **options, &block) before_action(options) do if block_given? policy = current_content_security_policy yield policy request.content_security_policy = policy end unless enabled request.content_security_policy = nil end end end def content_security_policy_report_only(report_only = true, **options) before_action(options) do request.content_security_policy_report_only = report_only end end end private def content_security_policy? request.content_security_policy end def content_security_policy_nonce request.content_security_policy_nonce end def current_content_security_policy request.content_security_policy&.clone || ActionDispatch::ContentSecurityPolicy.new end end end
Version data entries
14 entries across 14 versions & 2 rubygems