Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Controller/SystemController.php')
-rw-r--r--lib/Controller/SystemController.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/Controller/SystemController.php b/lib/Controller/SystemController.php
index 45e5afba..53f5c8f1 100644
--- a/lib/Controller/SystemController.php
+++ b/lib/Controller/SystemController.php
@@ -53,23 +53,23 @@ class SystemController extends Controller {
}
/**
- * Get a list of users
- * @NoAdminRequired
- * @param string $query
- * @param array $skipUsers - usernames to skip in return array
- * @return DataResponse
- */
+ * Get a list of users
+ * @NoAdminRequired
+ * @param string $query
+ * @param array $skipUsers - usernames to skip in return array
+ * @return DataResponse
+ */
public function getSiteUsers($query = '', $skipUsers = array()) {
return new DataResponse(['users' => $this->systemService->getSiteUsers($query, $skipUsers)], Http::STATUS_OK);
}
/**
- * Get a list of user groups
- * @NoAdminRequired
- * @param string $query
- * @param array $skipGroups - group names to skip in return array
- * @return DataResponse
- */
+ * Get a list of user groups
+ * @NoAdminRequired
+ * @param string $query
+ * @param array $skipGroups - group names to skip in return array
+ * @return DataResponse
+ */
public function getSiteGroups($query = '', $skipGroups = array()) {
return new DataResponse(['groups' => $this->systemService->getSiteGroups($query, $skipGroups)], Http::STATUS_OK);
}