Sha256: 00a464ef9d24567b7d900d50b879f5e8bac1b38ce6dc14fca7ab0ff89b43b57b

Contents?: true

Size: 340 Bytes

Versions: 3

Compression:

Stored size: 340 Bytes

Contents

# frozen_string_literal: true

module Doorkeeper
  module OAuth
    module Authorization
      class Context
        attr_reader :client, :grant_type, :scopes

        def initialize(client, grant_type, scopes)
          @client = client
          @grant_type = grant_type
          @scopes = scopes
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
doorkeeper-5.4.0 lib/doorkeeper/oauth/authorization/context.rb
doorkeeper-5.4.0.rc2 lib/doorkeeper/oauth/authorization/context.rb
doorkeeper-5.4.0.rc1 lib/doorkeeper/oauth/authorization/context.rb