🐛 Bug fixes on forgot add realm members for account

This commit is contained in:
2024-05-04 11:15:13 +08:00
parent db1849933f
commit fddcb86c9e
2 changed files with 8 additions and 9 deletions

View File

@ -19,9 +19,10 @@ type Account struct {
ConfirmedAt *time.Time `json:"confirmed_at"`
PowerLevel int `json:"power_level"`
Profile AccountProfile `json:"profile"`
PersonalPage AccountPage `json:"personal_page"`
Contacts []AccountContact `json:"contacts"`
Profile AccountProfile `json:"profile"`
PersonalPage AccountPage `json:"personal_page"`
Contacts []AccountContact `json:"contacts"`
RealmIdentities []RealmMember `json:"realm_identities"`
Tickets []AuthTicket `json:"tickets"`
Factors []AuthFactor `json:"factors"`