Browse Source

restore line

Shun Miyazawa 4 năm trước cách đây
mục cha
commit
db84de5267
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      packages/app/src/server/routes/apiv3/user-group.js

+ 1 - 0
packages/app/src/server/routes/apiv3/user-group.js

@@ -94,6 +94,7 @@ module.exports = (crowi) => {
   router.get('/children', loginRequiredStrictly, adminRequired, validator.listChildren, async(req, res) => {
     try {
       const { parentIds, includeGrandChildren = false } = req.query;
+
       const userGroupsResult = await UserGroup.findChildUserGroupsByParentIds(parentIds, includeGrandChildren);
       return res.apiv3({
         childUserGroups: userGroupsResult.childUserGroups,