@@ -49,6 +49,9 @@ |
||
| 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)) |
@@ -52,6 +52,9 @@ discard block |
||
| 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 |
||
| 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(); |