class Doorkeeper::JWT::Config

Public Instance Methods

encryption_method() click to toggle source
# File lib/doorkeeper/jwt/config.rb, line 135
def encryption_method
  @encryption_method ||= nil
end
secret_key() click to toggle source
# File lib/doorkeeper/jwt/config.rb, line 127
def secret_key
  @secret_key ||= nil
end
secret_key_path() click to toggle source
# File lib/doorkeeper/jwt/config.rb, line 131
def secret_key_path
  @secret_key_path ||= nil
end
use_application_secret() click to toggle source
# File lib/doorkeeper/jwt/config.rb, line 123
def use_application_secret
  @use_application_secret ||= false
end