group: cannot set name of ldap group
This commit is contained in:
@@ -204,7 +204,7 @@ async function initializeExpressSync() {
|
||||
router.post('/api/v1/groups', json, token, authorizeUserManager, routes.groups.add);
|
||||
router.get ('/api/v1/groups/:groupId', token, authorizeUserManager, routes.groups.load, routes.groups.get);
|
||||
router.put ('/api/v1/groups/:groupId/members', json, token, authorizeUserManager, routes.groups.load, routes.groups.setMembers);
|
||||
router.post('/api/v1/groups/:groupId', json, token, authorizeUserManager, routes.groups.load, routes.groups.update);
|
||||
router.put ('/api/v1/groups/:groupId/name', json, token, authorizeUserManager, routes.groups.load, routes.groups.setName);
|
||||
router.del ('/api/v1/groups/:groupId', token, authorizeUserManager, routes.groups.load, routes.groups.remove);
|
||||
|
||||
// User directory
|
||||
|
||||
Reference in New Issue
Block a user