From d63e3c91a97d77b202e280ab0fa007dfbe1baa46 Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Sat, 21 Mar 2026 22:36:11 +0100 Subject: Add editor with webcam/upload capture, overlay compositing, and gallery feed --- src/config/routes.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/config/routes.php') diff --git a/src/config/routes.php b/src/config/routes.php index e5b4a9a..c8bb52f 100644 --- a/src/config/routes.php +++ b/src/config/routes.php @@ -24,3 +24,10 @@ $router->post('/profile/username', 'ProfileController', 'updateUsername'); $router->post('/profile/email', 'ProfileController', 'updateEmail'); $router->post('/profile/password', 'ProfileController', 'updatePassword'); $router->post('/profile/notifications', 'ProfileController', 'updateNotifications'); + +// Gallery +$router->get('/gallery', 'GalleryController', 'index'); + +// Editor +$router->get('/editor', 'EditorController', 'show'); +$router->post('/editor', 'EditorController', 'store'); -- cgit v1.2.3