aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-10 23:13:34 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-11 06:27:05 +0100
commite1dd7f70c5cc0a0086d83d5fcdaa7a25081a5e6f (patch)
treec30f5c6859492a6c17a760414db119d14c72a451 /src/Wallabag/CoreBundle/Controller
parentf5deb024a2dd5a2cb27263a51f4653609407597e (diff)
downloadwallabag-e1dd7f70c5cc0a0086d83d5fcdaa7a25081a5e6f.tar.gz
wallabag-e1dd7f70c5cc0a0086d83d5fcdaa7a25081a5e6f.tar.zst
wallabag-e1dd7f70c5cc0a0086d83d5fcdaa7a25081a5e6f.zip
first test for API, need refactor
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller')
-rw-r--r--src/Wallabag/CoreBundle/Controller/WallabagRestController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/WallabagRestController.php b/src/Wallabag/CoreBundle/Controller/WallabagRestController.php
index 27d11da5..fcd212ef 100644
--- a/src/Wallabag/CoreBundle/Controller/WallabagRestController.php
+++ b/src/Wallabag/CoreBundle/Controller/WallabagRestController.php
@@ -33,7 +33,7 @@ class WallabagRestController extends Controller
33 throw $this->createNotFoundException(); 33 throw $this->createNotFoundException();
34 } 34 }
35 35
36 return $user->getSalt(); 36 return array($user->getSalt());
37 } 37 }
38 /** 38 /**
39 * Retrieve all entries. It could be filtered by many options. 39 * Retrieve all entries. It could be filtered by many options.