This commit is contained in:
imnavajas
2025-06-09 15:18:12 +02:00
parent e53626bbfe
commit 6967a61d93
6 changed files with 258 additions and 33 deletions

View File

@ -22,7 +22,8 @@ $routes->group('sistema', ['namespace' => 'App\Controllers\Sistema'], function (
* Tool
*========================**/
$routes->get('', 'Backups::index', ['as' => 'backupsList']);
$routes->get('/create', 'Backups::create', ['as' => 'backupsCreate']);
$routes->get('create', 'Backups::create', ['as' => 'backupsCreate']);
$routes->get('delete-local/(:num)', 'Backups::deleteLocal/$1', ['as' => 'backupsDeleteLocal']);
$routes->get('restore/(:segment)', 'Backups::restore/$1', ['as' => 'backupsRestore']);
});