summary refs log tree commit diff
path: root/synapse/handlers/set_password.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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.