Logout and contact stuff

This commit is contained in:
SowinskiBraeden committed 2021-10-10 16:31:02 -07:00
1 parent 7d649ef05b
commit b20e1f04c5
3 files changed
+138 -5

No files matched your search

+1 -1
View File
@@ -33,7 +33,7 @@ type Student struct {
Postal string `json:"pc"` // Postal Code
DOB string `json:"dob" validate:"required"`
Photo string `json:"photo"`
Contacts []Contact `json:"contacts"`
Contacts []string `json:"contacts"` // List of contact ID's rather than contact object
Created_at time.Time `json:"created_at"`
Updated_at time.Time `json:"updated_at"`
}