User able to re-send the confirm register email

This commit is contained in:
2025-03-15 22:20:33 +08:00
parent bcb2cd2f9c
commit 45dd50ccba
5 changed files with 39 additions and 8 deletions

View File

@ -14,8 +14,9 @@ const (
type MagicToken struct {
BaseModel
Code string `json:"code"`
Type int8 `json:"type"`
AccountID *uint `json:"account_id"`
ExpiredAt *time.Time `json:"expired_at"`
Code string `json:"code"`
Type int8 `json:"type"`
AccountID *uint `json:"account_id"`
ExpiredAt *time.Time `json:"expired_at"`
LastNotifiedAt *time.Time `json:"last_notified_at"`
}