chg: [appcontroller] Breadcrumbs and notifications are fetched only if the user is logged in
parent
249892c3e0
commit
dd3a1b8a15
|
@ -153,9 +153,11 @@ class AppController extends Controller
|
|||
|
||||
public function beforeRender(EventInterface $event)
|
||||
{
|
||||
if (!$this->ParamHandler->isRest()) {
|
||||
$this->set('breadcrumb', $this->Navigation->getBreadcrumb());
|
||||
$this->set('notifications', $this->Notification->getNotifications());
|
||||
if (!empty($this->request->getAttribute('identity'))) {
|
||||
if (!$this->ParamHandler->isRest()) {
|
||||
$this->set('breadcrumb', $this->Navigation->getBreadcrumb());
|
||||
$this->set('notifications', $this->Notification->getNotifications());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue