diff options
author | Jeremy Benoist <j0k3r@users.noreply.github.com> | 2016-03-16 23:23:42 +0100 |
---|---|---|
committer | Jeremy Benoist <j0k3r@users.noreply.github.com> | 2016-03-16 23:23:42 +0100 |
commit | 1978d0e3b63286bbf329b967bf1e6b2e3abef1b4 (patch) | |
tree | 60297ba36d01f9ae25dad3febf3f7d54000d52cf /src/Wallabag/CoreBundle/Controller | |
parent | 3500d4099f88f7db22eba42fdb7e8926f1f1cdac (diff) | |
parent | bc2b947cd54e49a03c267f3c0f13dc5b8a04d962 (diff) | |
download | wallabag-1978d0e3b63286bbf329b967bf1e6b2e3abef1b4.tar.gz wallabag-1978d0e3b63286bbf329b967bf1e6b2e3abef1b4.tar.zst wallabag-1978d0e3b63286bbf329b967bf1e6b2e3abef1b4.zip |
Merge pull request #1791 from wallabag/v2-fix-api-entry-properties
fix api properties and typo
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller')
-rw-r--r-- | src/Wallabag/CoreBundle/Controller/DeveloperController.php | 2 |
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 | ||