summaryrefslogtreecommitdiff
path: root/internal/configuration/schema/spnego.go
blob: 61cabc58bb99c8d65f86a95049d46093e32f67cc (plain)
1
2
3
4
5
6
package schema

type SPNEGO struct {
	Disable bool   `koanf:"disable" json:"disable" jsonschema:"default=false,title=Disable" jsonschema_description:"Disables the WebAuthn 2FA functionality."`
	Keytab  string `koanf:"keytab" json:"keytab" jsonschema:"title=File Path" jsonschema_description:"The filepath to the kerberos keytab."`
}