Exemplo n.º 1
0
 protected function auth()
 {
     if (!$this->isAuth) {
         $auth = new \Espo\Core\Utils\Auth($this->app->getContainer());
         $auth->useNoAuth();
         $this->isAuth = true;
     }
     return $this->isAuth;
 }