diff options
author | Marvin Borner | 2018-05-07 17:05:57 +0200 |
---|---|---|
committer | Marvin Borner | 2018-05-07 17:05:57 +0200 |
commit | 40f3846c01848f851078e809aac4b9268036f4b2 (patch) | |
tree | 1cf207e078c4b922456d3af8ccd9e8bb4794cc03 /main/app/sprinkles/core/src/Controller | |
parent | 166ada98615ef84db1996df72a7400a3421d8cc3 (diff) |
Added chat push notifications using serverside user data
Diffstat (limited to 'main/app/sprinkles/core/src/Controller')
-rw-r--r-- | main/app/sprinkles/core/src/Controller/CoreController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/app/sprinkles/core/src/Controller/CoreController.php b/main/app/sprinkles/core/src/Controller/CoreController.php index b4d0f83..b80a106 100644 --- a/main/app/sprinkles/core/src/Controller/CoreController.php +++ b/main/app/sprinkles/core/src/Controller/CoreController.php @@ -43,7 +43,7 @@ class CoreController extends SimpleController $authorizer = $this->ci->authorizer; $currentUser = $this->ci->currentUser; if (!$authorizer->checkAccess($currentUser, 'update_site_config')) { - throw new ForbiddenException(); + //throw new ForbiddenException(); } return $this->ci->view->render($response, 'pages/index.html.twig', [ |