class Doorkeeper::JWT::Config

Public Instance Methods

secret_key() click to toggle source
# File lib/doorkeeper/jwt/config.rb, line 133
def secret_key
  @secret_key ||= nil
end
secret_key_path() click to toggle source
# File lib/doorkeeper/jwt/config.rb, line 137
def secret_key_path
  @secret_key_path ||= nil
end
signing_method() click to toggle source
# File lib/doorkeeper/jwt/config.rb, line 141
def signing_method
  @signing_method ||= nil
end
use_application_secret() click to toggle source
# File lib/doorkeeper/jwt/config.rb, line 129
def use_application_secret
  @use_application_secret ||= false
end