added html admin notification mail

This commit is contained in:
$(pass /github/name)
2024-07-11 12:48:26 +02:00
parent de88a603d5
commit e4475e2400
3 changed files with 44 additions and 6 deletions

View File

@@ -19,6 +19,8 @@ type User struct {
LastName string `gorm:"not null" json:"last_name"`
ProfilePicture string `json:"profile_picture"`
Address string `gorm:"not null" json:"address"`
ZipCode string `gorm:"not null" json:"zip_code"`
City string `form:"not null" json:"city"`
Consents []Consent `gorm:"constraint:OnUpdate:CASCADE"`
BankAccount BankAccount `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`
Verification Verification `gorm:"constraint:OnUpdate:CASCADE,OnDelete:CASCADE;"`