Eliminados ajustes de sistemas. Ahora estan en variables del ERP

This commit is contained in:
unknown
2025-04-07 22:14:44 +02:00
parent 6045d65935
commit 4f5bc3301f
31 changed files with 108 additions and 8038 deletions

View File

@ -16,17 +16,15 @@ $routes->get('/', 'Home::index', ['as' => 'home']);
$routes->get('lang/{locale}', 'Language::index');
$routes->get('viewmode/(:alpha)', 'Viewmode::index/$1');
/* URL FOR TESTS */
$routes->get('test', 'Test::index');
$routes->group('activity', ['namespace' => 'App\Controllers\Sistema'], function ($routes) {
$routes->get('', 'Actividad::index', ['as' => 'activityList']);
$routes->post('datatable', 'Actividad::datatable', ['as' => 'activityDT']);
});
$routes->group('settings', ['namespace' => 'App\Controllers\Sistema'], function ($routes) {
$routes->get('', 'Ajustes::settings', ['as' => 'ajustesList']);
$routes->post('', 'Ajustes::settings', ['as' => 'ajustesEdit']);
});
/*
* --------------------------------------------------------------------