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

#secret_keyObject



133
134
135
# File 'lib/doorkeeper/jwt/config.rb', line 133

def secret_key
  @secret_key ||= nil
end

#secret_key_pathObject



137
138
139
# File 'lib/doorkeeper/jwt/config.rb', line 137

def secret_key_path
  @secret_key_path ||= nil
end

#signing_methodObject



141
142
143
# File 'lib/doorkeeper/jwt/config.rb', line 141

def signing_method
  @signing_method ||= nil
end

#use_application_secretObject



129
130
131
# File 'lib/doorkeeper/jwt/config.rb', line 129

def use_application_secret
  @use_application_secret ||= false
end