update permissionAllMethod

This commit is contained in:
Hoang 2021-11-17 10:13:08 +07:00
parent b841ef7d8a
commit 72f30fce59
2 changed files with 9 additions and 6 deletions

View File

@ -25,9 +25,10 @@ type PermissionUpdateOptions struct {
// PermissionAllQuery ...
type PermissionAllQuery struct {
Page int64
Limit int64
Sort interface{}
Page int64
Limit int64
Sort interface{}
RoleID string
}
// Validate ...

View File

@ -125,13 +125,15 @@ func All(queryParams model.PermissionAllQuery) (r model.PermissionAll) {
cond = bson.M{}
)
query := model.CommonQuery{
Page: queryParams.Page,
Limit: queryParams.Limit,
Sort: queryParams.Sort,
Page: queryParams.Page,
Limit: queryParams.Limit,
Sort: queryParams.Sort,
RoleID: queryParams.RoleID,
}
// Assign condition
query.SetDefaultLimit()
query.AssignRoleID(cond)
wg.Add(1)
go func() {