diff --git a/lib/Controller/GroupController.php b/lib/Controller/GroupController.php index 1dd44a250c0ec570bc0f5e6202d7c46ca066c521..044e3fec8d3af8bdd8e9ac81b93776217ccc13f0 100644 --- a/lib/Controller/GroupController.php +++ b/lib/Controller/GroupController.php @@ -175,30 +175,21 @@ class GroupController extends ASCIMGroup { * * @param string $id * - * @param bool $active * @param string $displayName - * @param array $emails + * @param array $members * @return DataResponse * @throws Exception */ public function update( string $id, - bool $active, string $displayName = '', - array $emails = []): SCIMJSONResponse { - $targetUser = $this->userManager->get($id); - if ($targetUser === null) { - return new SCIMErrorResponse(['message' => 'User not found'], 404); - } - foreach ($emails as $email) { - if ($email['primary'] === true) { - $targetUser->setEMailAddress($email['value']); - } - } - if (isset($active)) { - $targetUser->setEnabled($active); + array $members = []): SCIMJSONResponse { + $group = $this->groupManager->get($id); + foreach ($members as $member) { + $targetUser = $this->userManager->get($member['value']); + $group->addUser($targetUser); + // todo implement member removal (: } - return new SCIMJSONResponse($this->getSCIMUser($id)); - + return new SCIMJSONResponse($this->getSCIMGroup($id)); } /**