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

def deny

def deny
  pre_auth.error = :access_denied
  pre_auth.error_response
end

def initialize(pre_auth, resource_owner)

def initialize(pre_auth, resource_owner)
  @pre_auth       = pre_auth
  @resource_owner = resource_owner
end