Sha256: 3c6ff7a8907ab6bd34f12ebbe3fcc3493bf624abc945453e7213aa8f18dbdfc0

Contents?: true

Size: 680 Bytes

Versions: 37

Compression:

Stored size: 680 Bytes

Contents

# frozen_string_literal: true

module ActionView
  # = Action View CSP Helper
  module Helpers # :nodoc:
    module CspHelper
      # Returns a meta tag "csp-nonce" with the per-session nonce value
      # for allowing inline <script> tags.
      #
      #   <head>
      #     <%= csp_meta_tag %>
      #   </head>
      #
      # This is used by the Rails UJS helper to create dynamically
      # loaded inline <script> elements.
      #
      def csp_meta_tag(**options)
        if content_security_policy?
          options[:name] = "csp-nonce"
          options[:content] = content_security_policy_nonce
          tag("meta", options)
        end
      end
    end
  end
end

Version data entries

37 entries across 35 versions & 4 rubygems

Version Path
actionview-7.0.8.6 lib/action_view/helpers/csp_helper.rb
actionview-7.0.8.5 lib/action_view/helpers/csp_helper.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/actionview-7.0.8.4/lib/action_view/helpers/csp_helper.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/csp_helper.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/csp_helper.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/csp_helper.rb
actionview-7.0.8.4 lib/action_view/helpers/csp_helper.rb
actionview-7.0.8.1 lib/action_view/helpers/csp_helper.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actionview-7.0.3.1/lib/action_view/helpers/csp_helper.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actionview-7.0.2.3/lib/action_view/helpers/csp_helper.rb
actionview-7.0.8 lib/action_view/helpers/csp_helper.rb
actionview-7.0.7.2 lib/action_view/helpers/csp_helper.rb
actionview-7.0.7.1 lib/action_view/helpers/csp_helper.rb
actionview-7.0.7 lib/action_view/helpers/csp_helper.rb
actionview-7.0.6 lib/action_view/helpers/csp_helper.rb
actionview-7.0.5.1 lib/action_view/helpers/csp_helper.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionview-7.0.2.3/lib/action_view/helpers/csp_helper.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionview-7.0.3.1/lib/action_view/helpers/csp_helper.rb
actionview-7.0.5 lib/action_view/helpers/csp_helper.rb
actionview-7.0.4.3 lib/action_view/helpers/csp_helper.rb