aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/Routes.php
diff options
context:
space:
mode:
Diffstat (limited to 'bootstrap/Routes.php')
-rw-r--r--bootstrap/Routes.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/bootstrap/Routes.php b/bootstrap/Routes.php
deleted file mode 100644
index 33576e4..0000000
--- a/bootstrap/Routes.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-
-/* public routes */
-
-$router->get('', '../controllers/index.controller.php');
-$router->get('contact', '../controllers/contact.controller.php');
-$router->get('wall', '../controllers/wall.controller.php');
-$router->get('comments', '../controllers/comments.controller.php');
-$router->get('about', '../controllers/about.controller.php');
-$router->get('hashget', '../controllers/comments.controller.php');
-$router->get('hashover', '../controllers/comments.controller.php');
-
-$router->head('', '../controllers/index.controller.php');
-$router->head('contact', '../controllers/contact.controller.php');
-$router->head('wall', '../controllers/wall.controller.php');
-$router->head('comments', '../controllers/comments.controller.php');
-$router->head('hashget', '../controllers/comments.controller.php');
-$router->head('hashover', '../controllers/comments.controller.php');
-
-$router->post('contact', '../controllers/contact.controller.php');
-$router->post('hashpost', '../controllers/comments.controller.php');
-
-/* backend routes */
-
-$router->get('latestajax', '../bootstrap/comments/backend/latest-ajax.php');
-$router->get('countlinkajax', '../bootstrap/comments/backend/count-link-ajax.php');
-
-$router->post('commentsajax', '../bootstrap/comments/backend/comments-ajax.php');
-$router->post('formactions', '../bootstrap/comments/backend/form-actions.php');
-$router->post('loadcomments', '../bootstrap/comments/backend/load-comments.php');
-$router->post('likecomment', '../bootstrap/comments/backend/like.php');