class Morpho::Configurations::JWT

Attributes

algorithm[RW]
expiration_time[RW]
header[RW]
secret[RW]

Public Class Methods

new() click to toggle source
# File lib/morpho/configurations/jwt.rb, line 9
def initialize
  self.secret = ''
  self.algorithm = ''
  self.header = ''
  self.expiration_time = 0
end