aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/UserBundle/EventListener
Commit message (Collapse)AuthorAgeFilesLines
* Changed RSS to Atom feed and improve pagingThomas Citharel2019-04-251-4/+4
|
* Added possibility to change locale from login/register pagesNicolas LÅ“uillet2018-10-131-2/+5
|
* Add a real configuration for CS-FixerJeremy Benoist2017-07-012-2/+2
|
* Use a listener to catch auth failureJeremy Benoist2017-06-091-0/+40
|
* Both parameter wasn't used in the function, removing themJeremy Benoist2017-06-011-2/+1
|
* Add default value for list_modeJeremy Benoist2016-12-121-1/+7
|
* Create config even if user is disabledJeremy Benoist2016-10-041-4/+0
| | | | | When a user register itself AND the wallabag instance is configured to send a confirmation email, the user is disabled when the listener (which create the config) receive the event. There were a check (don't know why) if the user is enabled we create the config. But the user is disabled when confirmation email is actived.
* Create user config in one placeJeremy Benoist2016-09-301-0/+62
| | | | | | | | Using a listener, user config is now created when a user: - is created from the command line - register (with or without email confirmation) - is created from the config panel
* Convert array + phpDocJeremy Benoist2016-04-121-2/+2
| | | | Thanks for https://github.com/thomasbachem/php-short-array-syntax-converter
* CSJeremy Benoist2016-01-221-2/+2
|
* Use FOSUserEvents instead of c/p a controllerJeremy Benoist2016-01-211-0/+41
The `resetAction` was overriden to redirect user to the homepage instead of `fos_user_profile_show`. Instead of copying the whole method we can simply use FOSUserEvents to handle that.