diff --git a/internal/customer/form.go b/internal/customer/form.go index ae5c917..b5e42fb 100644 --- a/internal/customer/form.go +++ b/internal/customer/form.go @@ -50,7 +50,6 @@ type CustomerResponse struct { FullName *string `json:"full_name"` Username string `json:"username"` Email string `json:"email"` - Password string `json:"password"` Status string `json:"status"` Type string `json:"type"` Phone *string `json:"phone"` @@ -68,7 +67,6 @@ func (c *Customer) ToResponse(companies []*CompanySummary) *CustomerResponse { FullName: c.FullName, Username: c.Username, Email: c.Email, - Password: c.Password, Type: string(c.Type), Status: string(c.Status), Phone: c.Phone,