Class: Auth0CurrentUser::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/auth0_current_user/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



5
6
7
8
9
10
# File 'lib/auth0_current_user/configuration.rb', line 5

def initialize
  @auth0_domain = nil
  @auth0_audience = nil
  @authenticated_klass = :user
  @client_id = nil
end

Instance Attribute Details

#auth0_audienceObject

Returns the value of attribute auth0_audience.



3
4
5
# File 'lib/auth0_current_user/configuration.rb', line 3

def auth0_audience
  @auth0_audience
end

#auth0_domainObject

Returns the value of attribute auth0_domain.



3
4
5
# File 'lib/auth0_current_user/configuration.rb', line 3

def auth0_domain
  @auth0_domain
end

#authenticated_klassObject

Returns the value of attribute authenticated_klass.



3
4
5
# File 'lib/auth0_current_user/configuration.rb', line 3

def authenticated_klass
  @authenticated_klass
end

#client_idObject

Returns the value of attribute client_id.



3
4
5
# File 'lib/auth0_current_user/configuration.rb', line 3

def client_id
  @client_id
end