class Doorkeeper::OAuth::CodeRequest

def authorize

def authorize
  auth = Authorization::Code.new(pre_auth, resource_owner)
  auth.issue_token
  CodeResponse.new(pre_auth, auth)
end