update/contact-priority-and-fix-db-search

This commit is contained in:
SowinskiBraeden committed 2022-01-27 15:04:13 -08:00
1 parent e19e270e8d
commit e47ece5bb0
2 files changed
+92 -38

No files matched your search

+3 -3
View File
@@ -30,7 +30,7 @@ type Student struct {
DOB string `json:"dob" validate:"required"`
Photo string `json:"photo"`
Contacts []string `json:"contacts"` // List of contact ID's rather than contact object
}
} `json:"personaldata"`
SchoolData struct {
GradeLevel int `json:"gradelevel" validate:"required"`
SID string `json:"sid"` // Student ID
@@ -39,14 +39,14 @@ type Student struct {
Locker string `json:"locker"` // Locker ID
YOG int `json:"yog"` // Year of Graduation
Photo string `json:"photo"`
}
} `json:"schooldata"`
AccountData struct {
SchoolEmail string `json:"schoolemail"`
Password string `json:"-" validate:"min=10,max=32"`
AccountDisabled bool `bson:"accountdisabled"`
TempPassword bool `json:"temppassword"`
Attempts int `json:"attempts"` // login attempts max 5
}
} `json:"accountdata"`
Created_at time.Time `json:"created_at"`
Updated_at time.Time `json:"updated_at"`
}