Example #1
0
 /**
  * Returns users who don't have access to the model $model.
  *
  * @param WorkspaceModel $model
  */
 public function getUsersNotSharingModel(WorkspaceModel $model, $page = 1, $max = 20)
 {
     $res = $this->groupRepo->findGroupsNotSharingModel($model, false);
     return $this->pagerFactory->createPager($res, $page, $max);
 }