1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

Re-use NewUserType to validate registration

The only ugly things is how we handle error by generating the view and then parse the content to retrieve all errors…

Fix exposition fields in User entity
This commit is contained in:
Jeremy Benoist 2017-05-30 07:56:01 +02:00
parent 2251045901
commit 5709ecb368
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
4 changed files with 225 additions and 69 deletions

View file

@ -37,7 +37,7 @@ abstract class WallabagApiTestCase extends WebTestCase
$firewallName = $container->getParameter('fos_user.firewall_name');
$this->user = $userManager->findUserBy(['username' => 'admin']);
$loginManager->loginUser($firewallName, $this->user);
$loginManager->logInUser($firewallName, $this->user);
// save the login token into the session and put it in a cookie
$container->get('session')->set('_security_'.$firewallName, serialize($container->get('security.token_storage')->getToken()));