diff options
author | raghunayyar <me@iraghu.com> | 2014-01-28 14:07:42 +0530 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-06-02 12:52:52 +0200 |
commit | b2ca595509a1c14eb28768e4eed99a3ba6eba46a (patch) | |
tree | 1a4ec7ae74c185c3732062e5dcf780face6aa750 /settings/routes.php | |
parent | 43ced8c6c76eff0f258bf055ca7049e407043a33 (diff) | |
download | nextcloud-server-b2ca595509a1c14eb28768e4eed99a3ba6eba46a.tar.gz nextcloud-server-b2ca595509a1c14eb28768e4eed99a3ba6eba46a.zip |
Add GroupList Ajax to Users.
Diffstat (limited to 'settings/routes.php')
-rw-r--r-- | settings/routes.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/settings/routes.php b/settings/routes.php index 0e0f293b9be..77a10f68d6f 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -25,6 +25,8 @@ $this->create('settings_admin', '/settings/admin') // users $this->create('settings_ajax_userlist', '/settings/ajax/userlist') ->actionInclude('settings/ajax/userlist.php'); +$this->create('settings_ajax_grouplist', '/settings/ajax/grouplist') + ->actionInclude('settings/ajax/grouplist.php'); $this->create('settings_ajax_createuser', '/settings/ajax/createuser.php') ->actionInclude('settings/ajax/createuser.php'); $this->create('settings_ajax_removeuser', '/settings/ajax/removeuser.php') |