Class: Doorkeeper::JWT::Config

Inherits:
Object
  • Object
show all
Extended by:
Option
Defined in:
lib/doorkeeper/jwt/config.rb

Defined Under Namespace

Modules: Option Classes: Builder

Instance Method Summary collapse

Methods included from Option

extended, option

Instance Method Details

#encryption_methodObject



135
136
137
# File 'lib/doorkeeper/jwt/config.rb', line 135

def encryption_method
  @encryption_method ||= nil
end

#secret_keyObject



127
128
129
# File 'lib/doorkeeper/jwt/config.rb', line 127

def secret_key
  @secret_key ||= nil
end

#secret_key_pathObject



131
132
133
# File 'lib/doorkeeper/jwt/config.rb', line 131

def secret_key_path
  @secret_key_path ||= nil
end

#use_application_secretObject



123
124
125
# File 'lib/doorkeeper/jwt/config.rb', line 123

def use_application_secret
  @use_application_secret ||= false
end