diff options
author | Bertrand Dunogier <bertrand.dunogier@gmail.com> | 2016-09-29 10:14:43 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-11-22 14:01:46 +0100 |
commit | 7aab0ecf2f78ce58f28b53c1fa19bfd824cc3cd7 (patch) | |
tree | b3e4f7875944f79e6f4fcf16fd5d1230a1467621 /app | |
parent | bb28368f6953e07dbe6747d7c1eacf1abe35817e (diff) | |
download | wallabag-7aab0ecf2f78ce58f28b53c1fa19bfd824cc3cd7.tar.gz wallabag-7aab0ecf2f78ce58f28b53c1fa19bfd824cc3cd7.tar.zst wallabag-7aab0ecf2f78ce58f28b53c1fa19bfd824cc3cd7.zip |
Added authentication for restricted access articles
Fix #438. Thank you so much @bdunogier
Diffstat (limited to 'app')
-rw-r--r-- | app/AppKernel.php | 1 | ||||
-rw-r--r-- | app/config/parameters.yml.dist | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/app/AppKernel.php b/app/AppKernel.php index 81b83ef9..c8382d5f 100644 --- a/app/AppKernel.php +++ b/app/AppKernel.php | |||
@@ -31,6 +31,7 @@ class AppKernel extends Kernel | |||
31 | new Craue\ConfigBundle\CraueConfigBundle(), | 31 | new Craue\ConfigBundle\CraueConfigBundle(), |
32 | new WhiteOctober\PagerfantaBundle\WhiteOctoberPagerfantaBundle(), | 32 | new WhiteOctober\PagerfantaBundle\WhiteOctoberPagerfantaBundle(), |
33 | new FOS\JsRoutingBundle\FOSJsRoutingBundle(), | 33 | new FOS\JsRoutingBundle\FOSJsRoutingBundle(), |
34 | new BD\GuzzleSiteAuthenticatorBundle\BDGuzzleSiteAuthenticatorBundle(), | ||
34 | 35 | ||
35 | // wallabag bundles | 36 | // wallabag bundles |
36 | new Wallabag\CoreBundle\WallabagCoreBundle(), | 37 | new Wallabag\CoreBundle\WallabagCoreBundle(), |
diff --git a/app/config/parameters.yml.dist b/app/config/parameters.yml.dist index f821f2a8..a4dc0bde 100644 --- a/app/config/parameters.yml.dist +++ b/app/config/parameters.yml.dist | |||
@@ -56,3 +56,6 @@ parameters: | |||
56 | redis_port: 6379 | 56 | redis_port: 6379 |
57 | redis_path: null | 57 | redis_path: null |
58 | redis_password: null | 58 | redis_password: null |
59 | |||
60 | # sites credentials | ||
61 | sites_credentials: {} | ||