From 6ed50a146c6475e4ce40a5a581bc702f94d1a424 Mon Sep 17 00:00:00 2001 From: Dario Rekowski on RockPI Date: Tue, 3 Dec 2019 09:58:52 +0000 Subject: [PATCH] dissallow user creation --- src/Controller/ServerUsersController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/ServerUsersController.php b/src/Controller/ServerUsersController.php index 4a04fe9b4..238090123 100644 --- a/src/Controller/ServerUsersController.php +++ b/src/Controller/ServerUsersController.php @@ -15,7 +15,7 @@ class ServerUsersController extends AppController public function initialize() { parent::initialize(); - $this->Auth->allow(['add', 'edit']); + //$this->Auth->allow(['add', 'edit']); $this->Auth->deny('index'); }