Verbesserungen

This commit is contained in:
cgfhtw
2023-07-27 10:57:53 +02:00
parent cfe7c5b0da
commit ace3bd6736
12 changed files with 221 additions and 21 deletions
@@ -5,7 +5,7 @@ if (! defined('BASEPATH')) exit('No direct script access allowed');
/**
*
*/
class CisVue extends Auth_Controller
class CisVue extends FHC_Controller
{
/**
@@ -13,12 +13,14 @@ class CisVue extends Auth_Controller
*/
public function __construct()
{
parent::__construct([
'Menu' => 'user:r'
]);
parent::__construct();
// Loads authentication library and starts authentication
$this->load->library('AuthLib');
$this->load->library('PermissionLib');
if (!isLogged())
show_404();
}
//------------------------------------------------------------------------------------------------------------------