aboutsummaryrefslogtreecommitdiff
path: root/app/Routes.php
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-04-30 20:49:33 -0400
committerThedro Neely <thedroneely@gmail.com>2019-04-30 20:49:33 -0400
commit7267aff8c01d2fd9568de3a48f8fdf9840e9be5d (patch)
treed93d56aba5e199d02601f7686671864a69dd49a6 /app/Routes.php
parent58e193cd9c06122b30eadf568c920dd6f9df7f46 (diff)
downloadthedroneely.com-7267aff8c01d2fd9568de3a48f8fdf9840e9be5d.tar.gz
thedroneely.com-7267aff8c01d2fd9568de3a48f8fdf9840e9be5d.tar.bz2
thedroneely.com-7267aff8c01d2fd9568de3a48f8fdf9840e9be5d.zip
app/Routes: Add file upload page
Diffstat (limited to 'app/Routes.php')
-rw-r--r--app/Routes.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/Routes.php b/app/Routes.php
index 942f8d3..35cdd3e 100644
--- a/app/Routes.php
+++ b/app/Routes.php
@@ -8,10 +8,14 @@ $router->get('contact', '../app/controllers/contact.controller.php');
$router->get('resume', '../app/controllers/resume.controller.php');
+$router->get('upload', '../app/controllers/upload.controller.php');
+
$router->head('', '../app/controllers/index.controller.php');
$router->head('contact', '../app/controllers/contact.controller.php');
+$router->post('upload', '../app/controllers/upload.controller.php');
+
$router->post('contact', '../app/controllers/contact.controller.php');