Flowdock
method

authenticate_by_password

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: BaseController
authenticate_by_password() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionmailbox/app/controllers/action_mailbox/base_controller.rb, line 22
      def authenticate_by_password
        if password.present?
          http_basic_authenticate_or_request_with name: "actionmailbox", password: password, realm: "Action Mailbox"
        else
          raise ArgumentError, "Missing required ingress credentials"
        end
      end
Register or log in to add new notes.