diff options
author | Richard van der Hoff <github@rvanderhoff.org.uk> | 2017-10-27 12:29:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-27 12:29:32 +0100 |
commit | 110b373e9cf7ee47f4de87fafc1f2f6fe7576a27 (patch) | |
tree | ab5c130cd66a642b106352ab4286480e672a949f /synapse/handlers | |
parent | Merge pull request #2582 from matrix-org/luke/group-is-public (diff) | |
parent | Allow ASes to deactivate their own users (diff) | |
download | synapse-110b373e9cf7ee47f4de87fafc1f2f6fe7576a27.tar.xz |
Merge pull request #2589 from matrix-org/rav/as_deactivate_account
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 |