15 lines
358 B
Go
15 lines
358 B
Go
|
package validator
|
||
|
|
||
|
import (
|
||
|
"github.com/clems4ever/authelia/configuration/schema"
|
||
|
)
|
||
|
|
||
|
const defaultTOTPIssuer = "Authelia"
|
||
|
|
||
|
// ValidateTOTP validates and update TOTP configuration.
|
||
|
func ValidateTOTP(configuration *schema.TOTPConfiguration, validator *schema.StructValidator) {
|
||
|
if configuration.Issuer == "" {
|
||
|
configuration.Issuer = defaultTOTPIssuer
|
||
|
}
|
||
|
}
|