diff --git a/bootstrap/app.php b/bootstrap/app.php index 1fc3b7e..5d081cd 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -12,5 +12,6 @@ $app = Bridge::create($container); $app->addErrorMiddleware(true, true, true); $app->get('/admin', [ViewController::class, 'admin']); +$app->get('/admin/texts', [ViewController::class, 'texts']); return $app;