aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/DeveloperController.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller/DeveloperController.php')
-rw-r--r--src/Wallabag/CoreBundle/Controller/DeveloperController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/DeveloperController.php b/src/Wallabag/CoreBundle/Controller/DeveloperController.php
index 4688aeef..30cc8beb 100644
--- a/src/Wallabag/CoreBundle/Controller/DeveloperController.php
+++ b/src/Wallabag/CoreBundle/Controller/DeveloperController.php
@@ -35,7 +35,7 @@ class DeveloperController extends Controller
35 $clientForm->handleRequest($request); 35 $clientForm->handleRequest($request);
36 36
37 if ($clientForm->isValid()) { 37 if ($clientForm->isValid()) {
38 $client->setAllowedGrantTypes(array('token', 'authorization_code','password')); 38 $client->setAllowedGrantTypes(array('token', 'authorization_code', 'password'));
39 $em->persist($client); 39 $em->persist($client);
40 $em->flush(); 40 $em->flush();
41 41