aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-03-15 18:50:13 +0100
committerThomas Citharel <tcit@tcit.fr>2016-03-16 22:22:12 +0100
commit0d3043a29c4aba541d6a18c2d5cc7ebffc6ddc78 (patch)
tree2d33ffeba77ae33b6be24cda60eaf7007a53c96c /src/Wallabag/CoreBundle
parent3500d4099f88f7db22eba42fdb7e8926f1f1cdac (diff)
downloadwallabag-0d3043a29c4aba541d6a18c2d5cc7ebffc6ddc78.tar.gz
wallabag-0d3043a29c4aba541d6a18c2d5cc7ebffc6ddc78.tar.zst
wallabag-0d3043a29c4aba541d6a18c2d5cc7ebffc6ddc78.zip
fix api properties and typo
Diffstat (limited to 'src/Wallabag/CoreBundle')
-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 f519bdbc..e5cfd83c 100644
--- a/src/Wallabag/CoreBundle/Controller/DeveloperController.php
+++ b/src/Wallabag/CoreBundle/Controller/DeveloperController.php
@@ -43,7 +43,7 @@ class DeveloperController extends Controller
43 $clientForm->handleRequest($request); 43 $clientForm->handleRequest($request);
44 44
45 if ($clientForm->isValid()) { 45 if ($clientForm->isValid()) {
46 $client->setAllowedGrantTypes(array('token', 'authorization_code', 'password','refresh_token')); 46 $client->setAllowedGrantTypes(array('token', 'authorization_code', 'password', 'refresh_token'));
47 $em->persist($client); 47 $em->persist($client);
48 $em->flush(); 48 $em->flush();
49 49