UserProfile #1

Merged
phoenix merged 30 commits from user_profile into main 2026-05-27 22:59:45 -04:00
Showing only changes of commit c3ec0731b2 - Show all commits
+2
View File
@@ -11,7 +11,9 @@ type User struct {
PhoneNumber string `json:"phone_number"`
Username string `json:"username"`
Password string `json:"password"`
// Firstname is a pointer
Firstname *string `json:"first_name,omitempty"`
// Lastname is a pointer
Lastname *string `json:"last_name,omitempty"`
Created time.Time `json:"created"`
LastLogin *time.Time `json:"last_login,omitempty"`