Merge branch 'develop' of github.com:cerebrate-project/cerebrate into develop
commit
d5d1f0b572
|
@ -37,7 +37,16 @@ class OrgGroupsTable extends AppTable
|
|||
|
||||
public function checkIfGroupAdmin(int $groupId, mixed $user): bool
|
||||
{
|
||||
return true;
|
||||
$orgGroup = $this->get($groupId, ['contain' => 'Users']);
|
||||
if (empty($orgGroup)) {
|
||||
return false;
|
||||
}
|
||||
foreach ($orgGroup['users'] as $u) {
|
||||
if ($user['id'] == $u['id']) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public function checkIfUserBelongsToGroupAdminsGroup(User $currentUser, User $userToCheck): bool
|
||||
|
|
Loading…
Reference in New Issue