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

This commit is contained in:
2026-04-14 17:06:09 +07:00
parent f7925bc4ee
commit acecd1738e
9 changed files with 49 additions and 42 deletions

View File

@@ -265,7 +265,9 @@ func (v *verificationService) SearchVerification(ctx context.Context, dto *reque
return nil, err
}
return response.BuildPaginatedResponse(rows, totalRecords, dto.Page, dto.Limit), nil
verifications := models.UserVerificationsEntitiesToResponse(rows)
return response.BuildPaginatedResponse(verifications, totalRecords, dto.Page, dto.Limit), nil
}
func (v *verificationService) UpdateStatusVerification(ctx context.Context, userId string, verificationId string, dto *request.UpdateVerificationStatusDto) (*response.UserVerificationResponse, error) {