diff options
author | Jeremy Benoist <j0k3r@users.noreply.github.com> | 2016-08-24 11:13:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-24 11:13:00 +0200 |
commit | a1ab7d1d32cb69af563fcec4395fce5217f154f7 (patch) | |
tree | ffc13a611a862cce7d74bf6d349bbb2468f33049 /src/Wallabag/UserBundle/Controller/SecurityController.php | |
parent | 1bee9e0760c89756ebab0b67f9ab7efc5c6a709b (diff) | |
parent | 8541b3c4fdf35788129483060499fef50818222c (diff) | |
download | wallabag-a1ab7d1d32cb69af563fcec4395fce5217f154f7.tar.gz wallabag-a1ab7d1d32cb69af563fcec4395fce5217f154f7.tar.zst wallabag-a1ab7d1d32cb69af563fcec4395fce5217f154f7.zip |
Merge pull request #2186 from wallabag/addRegistration
Add option to disable registration
Diffstat (limited to 'src/Wallabag/UserBundle/Controller/SecurityController.php')
-rw-r--r-- | src/Wallabag/UserBundle/Controller/SecurityController.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/Wallabag/UserBundle/Controller/SecurityController.php b/src/Wallabag/UserBundle/Controller/SecurityController.php new file mode 100644 index 00000000..83fa0b20 --- /dev/null +++ b/src/Wallabag/UserBundle/Controller/SecurityController.php | |||
@@ -0,0 +1,21 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Wallabag\UserBundle\Controller; | ||
4 | |||
5 | use FOS\UserBundle\Controller\SecurityController as FOSSecurityController; | ||
6 | |||
7 | /** | ||
8 | * Extends login form in order to pass the registration_enabled parameter. | ||
9 | */ | ||
10 | class SecurityController extends FOSSecurityController | ||
11 | { | ||
12 | protected function renderLogin(array $data) | ||
13 | { | ||
14 | return $this->render('FOSUserBundle:Security:login.html.twig', | ||
15 | array_merge( | ||
16 | $data, | ||
17 | ['registration_enabled' => $this->container->getParameter('wallabag_user.registration_enabled')] | ||
18 | ) | ||
19 | ); | ||
20 | } | ||
21 | } | ||