Extend config schema

This commit is contained in:
2023-08-18 09:19:55 +02:00
parent 56d559fdd7
commit 6185635aa9
2 changed files with 30 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ type LdapConfig struct {
type JWTAuthConfig struct {
// Specifies for how long a JWT token shall be valid
// as a string parsable by time.ParseDuration().
MaxAge int64 `json:"max-age"`
MaxAge string `json:"max-age"`
// Specifies which cookie should be checked for a JWT token (if no authorization header is present)
CookieName string `json:"cookieName"`