Flowdock
method

secret_token

Importance_0
v3.0.0 - Show latest stable - 0 notes - Class: ActionController::HttpAuthentication::Digest
secret_token(request) 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_controller/metal/http_authentication.rb, line 242
      def secret_token(request)
        secret = request.env["action_dispatch.secret_token"]
        raise "You must set config.secret_token in your app's config" if secret.blank?
        secret
      end
Register or log in to add new notes.