Completed
Pull Request — develop (#51)
by Patrick
02:38
created
api/v1/class.GroupsAPI.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -49,6 +49,9 @@
 block discarded – undo
49 49
         return $response->withJson($groups);
50 50
     }
51 51
 
52
+    /**
53
+     * @param boolean $directOnly
54
+     */
52 55
     private function expandGroupMembers($group, $odata, $directOnly)
53 56
     {
54 57
         if($odata->expand !== false && in_array('member', $odata->expand))
Please login to merge, or discard this patch.
api/v1/class.UsersAPI.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -52,6 +52,9 @@  discard block
 block discarded – undo
52 52
         return $response->withJson($users);
53 53
     }
54 54
 
55
+    /**
56
+     * @param boolean $message
57
+     */
55 58
     protected function validateCanCreateUser($proposedUser, $auth, &$message)
56 59
     {
57 60
         $user = $auth->getUsersByFilter(new \Data\Filter('mail eq '.$proposedUser->mail));
@@ -367,6 +370,10 @@  discard block
 block discarded – undo
367 370
         return $response->withJson(array('success'=>true));
368 371
     }
369 372
 
373
+    /**
374
+     * @param Data\Filter $filter
375
+     * @param boolean $pending
376
+     */
370 377
     protected function getAllUsersByFilter($filter, &$pending)
371 378
     {
372 379
         $auth = AuthProvider::getInstance();
Please login to merge, or discard this patch.