fix: rename getresuser util

This commit is contained in:
Lakhan Samani
2021-12-24 06:35:02 +05:30
parent 30cde3e521
commit 1b3f931074
8 changed files with 8 additions and 8 deletions

View File

@@ -26,7 +26,7 @@ func Users(ctx context.Context) ([]*model.User, error) {
}
for i := 0; i < len(users); i++ {
res = append(res, utils.GetResUser(users[i]))
res = append(res, utils.GetResponseUserData(users[i]))
}
return res, nil