aboutsummaryrefslogtreecommitdiffstats
path: root/src/config
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-03-21 22:36:11 +0100
committerThomas Vanbesien <tvanbesi@proton.me>2026-03-21 22:36:11 +0100
commitd63e3c91a97d77b202e280ab0fa007dfbe1baa46 (patch)
treecd3533bfb947ea753d91f71a75406644a73d678d /src/config
parentf60a390f5c51039fd1efc1df9a6a7f3864ce0062 (diff)
downloadcamagru-d63e3c91a97d77b202e280ab0fa007dfbe1baa46.tar.gz
camagru-d63e3c91a97d77b202e280ab0fa007dfbe1baa46.zip
Add editor with webcam/upload capture, overlay compositing, and gallery feed
Diffstat (limited to 'src/config')
-rw-r--r--src/config/routes.php7
1 files changed, 7 insertions, 0 deletions
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');