aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form/Type/UserInformationType.php
Commit message (Collapse)AuthorAgeFilesLines
* Enable OTP 2FAJeremy Benoist2019-01-231-2/+7
| | | | | | | | | - Update SchebTwoFactorBundle to version 3 - Enable Google 2fa on the bundle - Disallow ability to use both email and google as 2fa - Update Ocramius Proxy Manager to handle typed function & attributes (from PHP 7) - use `$this->addFlash` shortcut instead of `$this->get('session')->getFlashBag()->add` - update admin to be able to create/reset the 2fa
* Convert array + phpDocJeremy Benoist2016-04-121-10/+10
| | | | Thanks for https://github.com/thomasbachem/php-short-array-syntax-converter
* Convert english translation fileJeremy Benoist2016-03-201-4/+13
| | | | | | | - convert english translation to translate key - remove baggy template for login (never used since user isn't logged in and it'll use the default theme: material) - fix tests about text in response (now checking translation key instead of translated text) - remove all ugly `<div class="hidden">{{ form_rest(form) }}</div>`
* Fix recent updateJeremy Benoist2016-01-151-1/+1
| | | | | | - some missing url parameters from WallabagRestController & EntryController - use a service for `EntryFilterType` to use fully qualified name instead (so changing class signature) - update ImportBundle (url & form)
* Symfony Upgrade Fixer FTWJeremy Benoist2016-01-151-5/+9
| | | | symfony-upgrade-fixer fix src/Wallabag/
* 2factor authentication via emailNicolas Lœuillet2015-10-131-0/+1
|
* remove old implementation for login/register/recoverNicolas Lœuillet2015-10-031-1/+1
|
* fix tests for FosUserNicolas Lœuillet2015-09-111-0/+7
|
* Update to Symfony 2.7Jeremy Benoist2015-06-021-2/+2
| | | | And fix some deps instead of using dev tags
* Merge pull request #1167 from wallabag/v2-api-bundleNicolas Lœuillet2015-06-011-0/+1
|\ | | | | Move API stuff in ApiBundle
| * CSJeremy Benoist2015-05-301-0/+1
| |
* | name not requiredThomas Citharel2015-04-151-1/+1
| |
* | changed email fields with the email type and added required parameter on ↵Thomas Citharel2015-04-151-2/+2
|/ | | | some stuff
* Remove ability to change usernameJeremy2015-04-011-0/+30
Since password are linked to username it was hard to change username while checking that the password is the good one. Instead of doing crazy things to achieve that, I act that user won't be able to update username. Also, username (and email) must be unique, since people logged in using username and can request a new password using email. This should fix #1149