get('/', 'Dashboard::index'); $routes->get('/dashboard/viewAccess/(:any)', 'Dashboard::viewAccess/$1'); // Tubes $routes->get('/tubes/collect/(:any)/(:any)', 'Tubes::collect/$1/$2'); $routes->get('/tubes/collectAll/(:any)', 'Tubes::collectAll/$1'); $routes->get('/tubes/uncollect/(:any)/(:any)', 'Tubes::uncollect/$1/$2'); $routes->get('/tubes/uncollectAll/(:any)', 'Tubes::uncollectAll/$1'); $routes->get('/tubes/unreceive/(:any)/(:any)', 'Tubes::unreceive/$1/$2'); $routes->get('/tubes/unreceiveAll/(:any)', 'Tubes::unreceiveAll/$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'); $routes->match(['get','post'], '/auth/login', 'Auth::login'); $routes->match(['get','post'], '/auth/setpass/(:any)', 'Auth::setpass/$1');