method

secret_key_base

secret_key_base()
public

No documentation available.

# File railties/lib/rails/application/configuration.rb, line 504
      def secret_key_base
        @secret_key_base || begin
          self.secret_key_base = if generate_local_secret?
            generate_local_secret
          else
            ENV["SECRET_KEY_BASE"] || Rails.application.credentials.secret_key_base
          end
        end
      end