diff options
Diffstat (limited to 'src/Wallabag/ApiBundle/Controller/WallabagRestController.php')
-rw-r--r-- | src/Wallabag/ApiBundle/Controller/WallabagRestController.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php index 35a90edd..29cab1f4 100644 --- a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php +++ b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php | |||
@@ -340,6 +340,21 @@ class WallabagRestController extends FOSRestController | |||
340 | 340 | ||
341 | return $this->renderJsonResponse($json); | 341 | return $this->renderJsonResponse($json); |
342 | } | 342 | } |
343 | /** | ||
344 | * Retrieve version number. | ||
345 | * | ||
346 | * @ApiDoc() | ||
347 | * | ||
348 | * @return Response | ||
349 | */ | ||
350 | public function getVersionAction() | ||
351 | { | ||
352 | $version = $this->container->getParameter('wallabag_core.version'); | ||
353 | |||
354 | $json = $this->get('serializer')->serialize($version, 'json'); | ||
355 | |||
356 | return $this->renderJsonResponse($json); | ||
357 | } | ||
343 | 358 | ||
344 | /** | 359 | /** |
345 | * Validate that the first id is equal to the second one. | 360 | * Validate that the first id is equal to the second one. |