aboutsummaryrefslogtreecommitdiff
path: root/app/Routes.php
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-03-05 04:38:53 -0500
committerThedro Neely <thedroneely@gmail.com>2019-03-05 04:38:53 -0500
commitbb28bf680e7293584a0c3e1c11ad06e57f1de168 (patch)
tree16b742d29471eb62a2d69906dbe44bb435d86d05 /app/Routes.php
parent3a940d4c80e24a1702dff40ff5a3b70c1050c39c (diff)
downloadthedroneely.com-bb28bf680e7293584a0c3e1c11ad06e57f1de168.tar.gz
thedroneely.com-bb28bf680e7293584a0c3e1c11ad06e57f1de168.tar.bz2
thedroneely.com-bb28bf680e7293584a0c3e1c11ad06e57f1de168.zip
app/Routes: Add admin route
Diffstat (limited to 'app/Routes.php')
-rw-r--r--app/Routes.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Routes.php b/app/Routes.php
index 7b73137..6b81ee3 100644
--- a/app/Routes.php
+++ b/app/Routes.php
@@ -8,6 +8,8 @@ $router->get('contact', '../app/controllers/contact.controller.php');
$router->get('resume', '../app/controllers/resume.controller.php');
+$router->get('admin', '../app/controllers/admin.controller.php');
+
$router->head('', '../app/controllers/index.controller.php');