Removed useless package

This commit is contained in:
Pinga 2024-02-27 18:11:10 +02:00
parent 73432e2928
commit b0f63ffb25
4 changed files with 1 additions and 13 deletions

View file

@ -138,7 +138,6 @@ $app->group('', function ($route) {
$route->get('/mode', HomeController::class .':mode')->setName('mode');
$route->get('/lang', HomeController::class .':lang')->setName('lang');
$route->get('/avatar', HomeController::class .':avatar')->setName('avatar');
$route->get('/logout', AuthController::class . ':logout')->setName('logout');
$route->post('/change-password', PasswordController::class . ':changePassword')->setName('change.password');
})->add(new AuthMiddleware($container));