aboutsummaryrefslogtreecommitdiffhomepage
path: root/api/Posts/routes.php
diff options
context:
space:
mode:
authorMarvin Borner2018-08-24 16:19:39 +0200
committerMarvin Borner2018-08-24 16:19:39 +0200
commitadf07b310bddf751584db0717b8f501b8acda32a (patch)
treec0938cb059337e62c69a5a727dee4808e16cd2bc /api/Posts/routes.php
parent1362cdab92ffd8b8f375f42886e34a6674f2b5af (diff)
Added models for post types
Diffstat (limited to 'api/Posts/routes.php')
-rw-r--r--api/Posts/routes.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/Posts/routes.php b/api/Posts/routes.php
index c34c120..c3b90e4 100644
--- a/api/Posts/routes.php
+++ b/api/Posts/routes.php
@@ -1,5 +1,5 @@
<?php
-
+// type [text, media] as get parameter (/posts?type=media,text)
$router->get('/posts', 'PostController@getAll');
$router->get('/posts/{id}', 'PostController@getById');
$router->post('/posts', 'PostController@create');