diff --git a/internal/services/gateway/api/user.go b/internal/services/gateway/api/user.go index a050d97..1148ea8 100644 --- a/internal/services/gateway/api/user.go +++ b/internal/services/gateway/api/user.go @@ -153,10 +153,10 @@ func (h *UserHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { } type UserResponse struct { - ID string `json:"id,omitempty"` - UserName string `json:"username,omitempty"` - Tokens []string `json:"tokens,omitempty"` - LinkedAccounts []*LinkedAccountResponse `json:"linked_accounts,omitempty"` + ID string `json:"id"` + UserName string `json:"username"` + Tokens []string `json:"tokens"` + LinkedAccounts []*LinkedAccountResponse `json:"linked_accounts"` } type LinkedAccountResponse struct {