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