aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/WallabagRestController.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-02-26 15:00:28 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-03-06 21:09:15 +0100
commit6ee416a06963916ca8050e7711538d4e9463a2bc (patch)
tree503a388640ebe8c5593207376152c95b87aaff0a /src/Wallabag/CoreBundle/Controller/WallabagRestController.php
parent0ca374e6a1698926b08635d6a276ff3bf91c76a5 (diff)
downloadwallabag-6ee416a06963916ca8050e7711538d4e9463a2bc.tar.gz
wallabag-6ee416a06963916ca8050e7711538d4e9463a2bc.tar.zst
wallabag-6ee416a06963916ca8050e7711538d4e9463a2bc.zip
commit bug with getSalt
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller/WallabagRestController.php')
-rw-r--r--src/Wallabag/CoreBundle/Controller/WallabagRestController.php10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/WallabagRestController.php b/src/Wallabag/CoreBundle/Controller/WallabagRestController.php
index a382caf7..81974371 100644
--- a/src/Wallabag/CoreBundle/Controller/WallabagRestController.php
+++ b/src/Wallabag/CoreBundle/Controller/WallabagRestController.php
@@ -40,19 +40,15 @@ class WallabagRestController extends Controller
40 /** 40 /**
41 * Retrieve salt for a giver user. 41 * Retrieve salt for a giver user.
42 * 42 *
43 * @ApiDoc( 43 * @ApiDoc()
44 * parameters={
45 * {"name"="username", "dataType"="string", "required"=true, "description"="username"}
46 * }
47 * )
48 * @return array 44 * @return array
49 */ 45 */
50 public function getSaltAction(Request $request) 46 public function getSaltAction($username)
51 { 47 {
52 $user = $this 48 $user = $this
53 ->getDoctrine() 49 ->getDoctrine()
54 ->getRepository('WallabagCoreBundle:User') 50 ->getRepository('WallabagCoreBundle:User')
55 ->findOneByUsername($request->query->get('username')); 51 ->findOneByUsername($username);
56 52
57 if (is_null($user)) { 53 if (is_null($user)) {
58 throw $this->createNotFoundException(); 54 throw $this->createNotFoundException();