community profile and left menu implementation done, not quite working yet

This commit is contained in:
2025-10-16 23:05:34 -06:00
parent 681b30272d
commit 65c739dc57
17 changed files with 412 additions and 72 deletions
+2 -2
View File
@@ -22,8 +22,8 @@ import (
type ContactInfo struct {
Mutex sync.Mutex
ContactId int32 `db:"contactid"`
GivenName string `db:"given_name"`
FamilyName string `db:"family_name"`
GivenName *string `db:"given_name"`
FamilyName *string `db:"family_name"`
MiddleInit *string `db:"middle_init"`
Prefix *string `db:"prefix"`
Suffix *string `db:"suffix"`