Created FederatedUser

This commit is contained in:
Clemens 2024-02-07 15:37:48 +01:00 committed by Michael Jerger
parent e477181e23
commit 67f3f66be4
2 changed files with 46 additions and 0 deletions

View file

@ -35,6 +35,10 @@ func ValidateNotEmpty(value any, fieldName string) []string {
if v.IsZero() {
isValid = false
}
case int64:
if v == 0 {
isValid = false
}
default:
isValid = false
}