summaryrefslogtreecommitdiffstats
path: root/settings/routes.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-06-03 15:04:30 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2014-06-03 15:04:30 +0200
commit79b3558c6d6f76095a04bb32bed05dbb5493ca91 (patch)
tree2a31a2f700ef6171ad0d8b2fc3ec1c3b4060a523 /settings/routes.php
parent2b1a7a76c37239c4f515f701a686889a359f4567 (diff)
parent39982c2aea841658bd6dbc67db50b568a32c8608 (diff)
downloadnextcloud-server-79b3558c6d6f76095a04bb32bed05dbb5493ca91.tar.gz
nextcloud-server-79b3558c6d6f76095a04bb32bed05dbb5493ca91.zip
Merge pull request #7151 from owncloud/user-jquery
Continuing the New User management
Diffstat (limited to 'settings/routes.php')
-rw-r--r--settings/routes.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/settings/routes.php b/settings/routes.php
index 0e0f293b9be..9acfc2852bd 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')
@@ -44,6 +46,8 @@ $this->create('settings_users_changepassword', '/settings/users/changepassword')
->action('OC\Settings\ChangePassword\Controller', 'changeUserPassword');
$this->create('settings_ajax_changedisplayname', '/settings/ajax/changedisplayname.php')
->actionInclude('settings/ajax/changedisplayname.php');
+$this->create('settings_ajax_changegorupname', '/settings/ajax/changegroupname.php')
+ ->actionInclude('settings/ajax/changegroupname.php');
// personal
$this->create('settings_personal_changepassword', '/settings/personal/changepassword')
->post()