Flowdock
method

has_basic_credentials?

Importance_0
has_basic_credentials?(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 98
      def has_basic_credentials?(request)
        request.authorization.present? && (auth_scheme(request) == 'Basic')
      end
Register or log in to add new notes.