public function getGroupByNameAndScheduledForInsert($name)
 {
     $group = $this->groupRepo->findGroupByName($name, true);
     if (!$group) {
         $group = $this->getGroupByNameScheduledForInsert($name);
     }
     return $group;
 }
Exemple #2
0
 public function getGroupByName($name, $executeQuery = true)
 {
     return $this->groupRepo->findGroupByName($name, $executeQuery);
 }