From 3c686fd5f87dd3ee3bf1802e8a77e3012c5323e9 Mon Sep 17 00:00:00 2001 From: Awilum Date: Mon, 24 Jun 2019 22:08:53 +0300 Subject: [PATCH] Admin Panel: Themes #171 #165 - next round of implementation. --- site/plugins/admin/routes/web.php | 1 + 1 file changed, 1 insertion(+) diff --git a/site/plugins/admin/routes/web.php b/site/plugins/admin/routes/web.php index 5ea300b9..e3aeb691 100644 --- a/site/plugins/admin/routes/web.php +++ b/site/plugins/admin/routes/web.php @@ -57,6 +57,7 @@ $app->group('/' . $admin_route, function () use ($flextype, $app) { // ThemesController $app->get('/themes', 'ThemesController:index')->setName('admin.themes.index'); + $app->post('/themes/activateProcess', 'ThemesController:activateProcess')->setName('admin.themes.activateProcess'); // TemplatesController $app->get('/templates', 'TemplatesController:index')->setName('admin.templates.index');