Neos\Neos\Domain\Service\ContentContext::hasAccessToBackend PHP Method

hasAccessToBackend() protected method

Is access to the neos backend granted by current authentications.
protected hasAccessToBackend ( ) : boolean
return boolean
    protected function hasAccessToBackend()
    {
        try {
            return $this->privilegeManager->isPrivilegeTargetGranted('Neos.Neos:Backend.GeneralAccess');
        } catch (Exception $exception) {
            return false;
        }
    }