diff options
author | Vincent <vincentbechu@gmail.com> | 2016-03-07 15:00:03 +0100 |
---|---|---|
committer | Vincent <vincentbechu@gmail.com> | 2016-03-07 15:00:03 +0100 |
commit | 2b4770301cbcaed3838ae3c0b175a985d1b4fb4f (patch) | |
tree | 240147dbec127bfb5c2d0ba3d5a196134ffea8b9 /src/Wallabag/ApiBundle | |
parent | 1e5a4b36ab9e50047e48f247b84733bdf9417844 (diff) | |
download | wallabag-2b4770301cbcaed3838ae3c0b175a985d1b4fb4f.tar.gz wallabag-2b4770301cbcaed3838ae3c0b175a985d1b4fb4f.tar.zst wallabag-2b4770301cbcaed3838ae3c0b175a985d1b4fb4f.zip |
Add version in API
Diffstat (limited to 'src/Wallabag/ApiBundle')
-rw-r--r-- | src/Wallabag/ApiBundle/Controller/WallabagRestController.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php index 35a90edd..5f342825 100644 --- a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php +++ b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php | |||
@@ -340,6 +340,19 @@ class WallabagRestController extends FOSRestController | |||
340 | 340 | ||
341 | return $this->renderJsonResponse($json); | 341 | return $this->renderJsonResponse($json); |
342 | } | 342 | } |
343 | /** | ||
344 | * Retrive version. | ||
345 | * | ||
346 | * @return Response | ||
347 | */ | ||
348 | public function getVersionAction() | ||
349 | { | ||
350 | $version = $this->container->getParameter('wallabag_core.version'); | ||
351 | |||
352 | $json = $this->get('serializer')->serialize($version, 'json'); | ||
353 | |||
354 | return $this->renderJsonResponse($json); | ||
355 | } | ||
343 | 356 | ||
344 | /** | 357 | /** |
345 | * Validate that the first id is equal to the second one. | 358 | * Validate that the first id is equal to the second one. |