Method: ActionController::HttpAuthentication::Basic#encode_credentials
- Defined in:
- lib/action_controller/metal/http_authentication.rb
#encode_credentials(user_name, password) ⇒ Object
140 141 142 |
# File 'lib/action_controller/metal/http_authentication.rb', line 140 def encode_credentials(user_name, password) "Basic #{ActiveSupport::Base64.encode64("#{user_name}:#{password}")}" end |