diff options
author | Lukas Reschke <lukas@owncloud.com> | 2014-09-08 18:29:11 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2014-09-08 18:29:11 +0200 |
commit | ffee4da397d8f74f8e4ce4f479c2a9447e60477c (patch) | |
tree | 12a3df968e46946613f4cc74452e34b45a2a1af3 /settings/routes.php | |
parent | 0ec9c2ccf8a2fd3451135c65146ff2c04ef0457b (diff) | |
parent | 6a56e03d482e723356b79e8d652922329daea1a4 (diff) | |
download | nextcloud-server-ffee4da397d8f74f8e4ce4f479c2a9447e60477c.tar.gz nextcloud-server-ffee4da397d8f74f8e4ce4f479c2a9447e60477c.zip |
Merge pull request #10740 from owncloud/fix-everyone-group-count
Using countUsers method to return true count of 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 191b5febbd7..86d6049551c 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -27,6 +27,8 @@ $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_everyonecount', '/settings/ajax/geteveryonecount') + ->actionInclude('settings/ajax/geteveryonecount.php'); $this->create('settings_ajax_createuser', '/settings/ajax/createuser.php') ->actionInclude('settings/ajax/createuser.php'); $this->create('settings_ajax_removeuser', '/settings/ajax/removeuser.php') |