Add name field to user auth entries

This commit is contained in:
Melody Becker 2025-03-31 16:42:57 +02:00
parent 1e59c661c7
commit 4c8ebaeab8
Signed by: mstar
SSH key fingerprint: SHA256:9VAo09aaVNTWKzPW7Hq2LW+ox9OdwmTSHRoD4mlz1yI
2 changed files with 6 additions and 1 deletions

View file

@ -13,4 +13,5 @@ type UserAuthMethod struct {
UserId string
AuthMethod AuthenticationMethodType `gorm:"type:auth_method_type"`
Token []byte
Name string
}