Class: Doorkeeper::JWT::Config
- Inherits:
-
Object
- Object
- Doorkeeper::JWT::Config
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_key ⇒ Object
133
134
135
|
# File 'lib/doorkeeper/jwt/config.rb', line 133
def secret_key
@secret_key ||= nil
end
|
#secret_key_path ⇒ Object
137
138
139
|
# File 'lib/doorkeeper/jwt/config.rb', line 137
def secret_key_path
@secret_key_path ||= nil
end
|
#signing_method ⇒ Object
141
142
143
|
# File 'lib/doorkeeper/jwt/config.rb', line 141
def signing_method
@signing_method ||= nil
end
|
#use_application_secret ⇒ Object
129
130
131
|
# File 'lib/doorkeeper/jwt/config.rb', line 129
def use_application_secret
@use_application_secret ||= false
end
|