fix login issue
This commit is contained in:
+8
-8
@@ -69,6 +69,14 @@ func (c *Config) Auth() *AuthConfig {
|
||||
}
|
||||
}
|
||||
|
||||
func (c *Config) GetCustomerJWTSecret() string {
|
||||
return c.Jwt.Customer.Secret
|
||||
}
|
||||
|
||||
func (c *Config) GetCustomerJWTExpiresTTL() int {
|
||||
return c.Jwt.Customer.ExpiresTTL
|
||||
}
|
||||
|
||||
func (c *Config) LogLevel() string {
|
||||
return c.Log.LogLevel
|
||||
}
|
||||
@@ -84,11 +92,3 @@ func (c *Config) LogFormat() string {
|
||||
func (c *Config) GetFonnte() *Fonnte {
|
||||
return &c.Fonnte
|
||||
}
|
||||
|
||||
func (c *Config) GetCustomerJWTSecret() string {
|
||||
return c.Jwt.Customer.Token.Secret
|
||||
}
|
||||
|
||||
func (c *Config) GetCustomerJWTExpiresTTL() int {
|
||||
return c.Jwt.Customer.Token.ExpiresTTL
|
||||
}
|
||||
|
||||
+2
-1
@@ -11,5 +11,6 @@ type Token struct {
|
||||
}
|
||||
|
||||
type Customer struct {
|
||||
Token Token `mapstructure:"token"`
|
||||
ExpiresTTL int `mapstructure:"expires-ttl"`
|
||||
Secret string `mapstructure:"secret"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user