diff --git a/app/Config/Routes.php b/app/Config/Routes.php index ed5a78a..3d8692d 100644 --- a/app/Config/Routes.php +++ b/app/Config/Routes.php @@ -7,6 +7,10 @@ use CodeIgniter\Router\RouteCollection; */ $routes->get('/', 'Dashboard::index'); $routes->get('/dashboard/viewAccess/(:any)', 'Dashboard::viewAccess/$1'); +// Users +$routes->get('/users/', 'Users::index'); +// DICT_TESTS +$routes->get('/dict_tests/', 'Dict_tests::index'); // Auth $routes->get('/auth/logout', 'Auth::logout'); $routes->get('/auth/loginTD', 'Auth::loginTD'); diff --git a/app/Controllers/Users.php b/app/Controllers/Users.php new file mode 100644 index 0000000..72beb10 --- /dev/null +++ b/app/Controllers/Users.php @@ -0,0 +1,11 @@ +