Class: Doorkeeper::JWT::Config
- Inherits:
-
Object
- Object
- Doorkeeper::JWT::Config
- Extended by:
- Config::Option
- Defined in:
- lib/doorkeeper/jwt/config.rb
Defined Under Namespace
Classes: Builder
Instance Method Summary collapse
- #secret_key ⇒ Object
- #secret_key_path ⇒ Object
- #signing_method ⇒ Object
- #use_application_secret ⇒ Object
Instance Method Details
#secret_key ⇒ Object
73 74 75 |
# File 'lib/doorkeeper/jwt/config.rb', line 73 def secret_key @secret_key ||= nil end |
#secret_key_path ⇒ Object
77 78 79 |
# File 'lib/doorkeeper/jwt/config.rb', line 77 def secret_key_path @secret_key_path ||= nil end |
#signing_method ⇒ Object
81 82 83 |
# File 'lib/doorkeeper/jwt/config.rb', line 81 def signing_method @signing_method ||= nil end |
#use_application_secret ⇒ Object
69 70 71 |
# File 'lib/doorkeeper/jwt/config.rb', line 69 def use_application_secret @use_application_secret ||= false end |