From 8fbf874ec2353c29b3ef7b795d541251da6ac468 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Fri, 13 Sep 2013 06:43:24 +0200 Subject: [PATCH] like API --- src/imagestore/Controller/Api/Likes.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/imagestore/Controller/Api/Likes.php diff --git a/src/imagestore/Controller/Api/Likes.php b/src/imagestore/Controller/Api/Likes.php new file mode 100644 index 0000000..14ea43b --- /dev/null +++ b/src/imagestore/Controller/Api/Likes.php @@ -0,0 +1,15 @@ + array() + ); + header('Content-Type: application/json'); + echo json_encode($likes, JSON_PRETTY_PRINT); + } +} +?> -- 2.30.2