diff options
author | Richard van der Hoff <richard@matrix.org> | 2017-10-27 00:01:00 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2017-10-27 00:01:00 +0100 |
commit | 785bd7fd75ffd944f6257185fe3129495e5fa6e7 (patch) | |
tree | bdb2bcef1772c93f624fbfb4b2c193f124f5635f /synapse/handlers | |
parent | Merge branch 'master' of github.com:matrix-org/synapse into develop (diff) | |
download | synapse-785bd7fd75ffd944f6257185fe3129495e5fa6e7.tar.xz |
Allow ASes to deactivate their own users
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py index 9cef9d184b..acae4d9e0d 100644 --- a/synapse/handlers/auth.py +++ b/synapse/handlers/auth.py @@ -82,7 +82,7 @@ class AuthHandler(BaseHandler): def check_auth(self, flows, clientdict, clientip): """ Takes a dictionary sent by the client in the login / registration - protocol and handles the login flow. + protocol and handles the User-Interactive Auth flow. As a side effect, this function fills in the 'creds' key on the user's session with a map, which maps each auth-type (str) to the relevant |