class Rack::OAuth2::Server::Token::RefreshToken::Request

Public Class Methods

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