UPDATE: Fix bug
All checks were successful
Build and Release / release (push) Successful in 1m3s

This commit is contained in:
2026-04-12 07:48:57 +07:00
parent cd2ab23de7
commit 72efb480ac
3 changed files with 37 additions and 34 deletions

View File

@@ -23,6 +23,7 @@ type UserVerificationEntity struct {
type UserVerificationStorageEntity struct {
Email string `json:"email"`
Name string `json:"name"`
Status constants.StatusType `json:"status"`
ReviewNote string `json:"review_note"`
}
@@ -76,4 +77,3 @@ func UserVerificationsEntitiesToResponse(entities []*UserVerificationEntity) []*
}
return responses
}