class Doorkeeper::OAuth::Authorization::Context

Attributes

client[R]
grant_type[R]
resource_owner[R]
scopes[R]

Public Class Methods

new(**attributes) click to toggle source
# File lib/doorkeeper/oauth/authorization/context.rb, line 9
def initialize(**attributes)
  attributes.each do |name, value|
    instance_variable_set(:"@#{name}", value) if respond_to?(name)
  end
end