method
encode_credentials
v3.0.9 -
Show latest stable
- Class:
ActionController::HttpAuthentication::Basic
encode_credentials(user_name, password)public
No documentation available.
# File actionpack/lib/action_controller/metal/http_authentication.rb, line 140
def encode_credentials(user_name, password)
"Basic #{ActiveSupport::Base64.encode64("#{user_name}:#{password}")}"
end