aboutsummaryrefslogtreecommitdiff
path: root/app/Routes.php
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-05-16 00:35:00 -0400
committerThedro Neely <thedroneely@gmail.com>2019-05-16 00:35:00 -0400
commitd1005d13cb7b303ebaccaa262c101463ce7b4f92 (patch)
tree205ecf303311790d6285bb311093f58115d1e733 /app/Routes.php
parentbda06efb4488f76e3e5b87c8f36d08f338b35551 (diff)
downloadthedroneely.com-d1005d13cb7b303ebaccaa262c101463ce7b4f92.tar.gz
thedroneely.com-d1005d13cb7b303ebaccaa262c101463ce7b4f92.tar.bz2
thedroneely.com-d1005d13cb7b303ebaccaa262c101463ce7b4f92.zip
app/controllers/api: Add simple api route to update thumbnails
Diffstat (limited to 'app/Routes.php')
-rw-r--r--app/Routes.php12
1 files changed, 10 insertions, 2 deletions
diff --git a/app/Routes.php b/app/Routes.php
index 35cdd3e..16abe96 100644
--- a/app/Routes.php
+++ b/app/Routes.php
@@ -1,6 +1,7 @@
<?php
-
-/* public routes */
+/**
+ * Public routes
+ */
$router->get('', '../app/controllers/index.controller.php');
@@ -19,3 +20,10 @@ $router->head('contact', '../app/controllers/contact.controller.php');
$router->post('upload', '../app/controllers/upload.controller.php');
$router->post('contact', '../app/controllers/contact.controller.php');
+
+
+/**
+ * Api routes
+ */
+
+$router->post('api/thumbnails', '../app/controllers/api/thumbnails.controller.php');