From 019f3a61e19566bad688d2c73d39783c29914290 Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Sun, 12 Apr 2026 22:13:56 +0300 Subject: [PATCH] add route for admin texts view --- bootstrap/app.php | 1 + 1 file changed, 1 insertion(+) 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;