summary refs log tree commit diff
path: root/synapse/handlers/set_password.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Hash passwords earlier in the password reset process (#7538)Patrick Cloke2020-05-201-4/+1
| | | | This now matches the logic of the registration process as modified in 56db0b1365965c02ff539193e26c333b7f70d101 / #7523.
* Convert auth handler to async/await (#7261)Patrick Cloke2020-04-151-8/+5
|
* Allow server admins to define and enforce a password policy (MSC2000). (#7118)Dirk Klimpel2020-03-261-0/+2
|
* Add an option to the set password API to choose whether to logout other ↵Patrick Cloke2020-03-181-16/+25
| | | | devices. (#7085)
* Added possibilty to disable local password authentication (#5092)Daniel Hoffend2019-06-271-0/+3
| | | | | Signed-off-by: Daniel Hoffend <dh@dotlan.net>
* Run Black. (#5482)Amber Brown2019-06-201-2/+3
|
* run isortAmber Brown2018-07-091-0/+1
|
* Do bcrypt hashing in a background threadErik Johnston2018-01-101-1/+1
|
* Delete devices in various logout situationsRichard van der Hoff2017-11-291-0/+11
| | | | | | | | | | | | | Make sure that we delete devices whenever a user is logged out due to any of the following situations: * /logout * /logout_all * change password * deactivate account (by the user or by an admin) * invalidate access token from a dynamic module Fixes #2672.
* Move set_password into its own handlerRichard van der Hoff2017-11-291-0/+45
Non-functional refactoring to move set_password. This means that we'll be able to properly deactivate devices and access tokens without introducing a dependency loop.