2
0
Shun Miyazawa 4 жил өмнө
parent
commit
db84de5267

+ 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,