class Rack::OAuth2::Server::Token::Password::Request

Public Class Methods

new(env) click to toggle source
# File lib/rack/oauth2/server/token/password.rb, line 15
def initialize(env)
  super
  @grant_type = :password
  @username   = params['username']
  @password   = params['password']
  attr_missing!
end