Class: Doorkeeper::JWT::Config

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

Defined Under Namespace

Classes: Builder

Instance Method Summary collapse

Instance Method Details

#secret_keyObject



73
74
75
# File 'lib/doorkeeper/jwt/config.rb', line 73

def secret_key
  @secret_key ||= nil
end

#secret_key_pathObject



77
78
79
# File 'lib/doorkeeper/jwt/config.rb', line 77

def secret_key_path
  @secret_key_path ||= nil
end

#signing_methodObject



81
82
83
# File 'lib/doorkeeper/jwt/config.rb', line 81

def signing_method
  @signing_method ||= nil
end

#use_application_secretObject



69
70
71
# File 'lib/doorkeeper/jwt/config.rb', line 69

def use_application_secret
  @use_application_secret ||= false
end