Welcome page on first login or after password change

This commit is contained in:
William Bouzourène 2024-12-22 13:00:05 +01:00
parent f984d0cfad
commit 3e4b5a811a
7 changed files with 230 additions and 6 deletions

View file

@ -8,10 +8,11 @@ import (
type User struct {
gorm.Model
Name string
Email string
Password string
TotpSercet sql.NullString
DisabledAt sql.NullTime
IsAdmin bool
Name string
Email string
Password string
TotpSercet sql.NullString
DisabledAt sql.NullTime
IsAdmin bool
SkipWelcome bool
}