1
0
forked from baron/baron-sso

마이페이지 구현

This commit is contained in:
2026-01-27 13:39:49 +09:00
parent 4c608c6c3c
commit 60035aad53
11 changed files with 844 additions and 1 deletions

View File

@@ -59,3 +59,22 @@ type SignupRequest struct {
Department string `json:"department"`
TermsAccepted bool `json:"termsAccepted"`
}
// User Profile Models
type UserProfileResponse struct {
ID string `json:"id"`
Email string `json:"email"`
Name string `json:"name"`
Phone string `json:"phone"`
Department string `json:"department"`
AffiliationType string `json:"affiliationType"`
CompanyCode string `json:"companyCode,omitempty"`
}
type UpdateUserRequest struct {
Name string `json:"name"`
Phone string `json:"phone"`
Department string `json:"department"`
VerificationCode string `json:"verificationCode,omitempty"` // For phone change
}