diff options
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/routes.php | 7 |
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'); |
