diff options
author | Erik Johnston <erikj@jki.re> | 2019-04-03 11:07:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-03 11:07:09 +0100 |
commit | 8f549c11773e0a410de3ef56ab7b6385ecda8ac5 (patch) | |
tree | c4eb76d4a59ac05cea694cd74e2cca77ac4bcd4e /synapse/handlers/auth.py | |
parent | Run black on the rest of the storage module (#4996) (diff) | |
parent | Correctly handle id_server param (diff) | |
download | synapse-8f549c11773e0a410de3ef56ab7b6385ecda8ac5.tar.xz |
Merge pull request #4982 from matrix-org/erikj/msc1915
Implement MSC1915 - 3PID unbind APIs
Diffstat (limited to 'synapse/handlers/auth.py')
-rw-r--r-- | synapse/handlers/auth.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py index 4544de821d..aa5d89a9ac 100644 --- a/synapse/handlers/auth.py +++ b/synapse/handlers/auth.py @@ -912,7 +912,7 @@ class AuthHandler(BaseHandler): ) @defer.inlineCallbacks - def delete_threepid(self, user_id, medium, address): + def delete_threepid(self, user_id, medium, address, id_server=None): """Attempts to unbind the 3pid on the identity servers and deletes it from the local database. @@ -920,6 +920,10 @@ class AuthHandler(BaseHandler): user_id (str) medium (str) address (str) + id_server (str|None): Use the given identity server when unbinding + any threepids. If None then will attempt to unbind using the + identity server specified when binding (if known). + Returns: Deferred[bool]: Returns True if successfully unbound the 3pid on @@ -937,6 +941,7 @@ class AuthHandler(BaseHandler): { 'medium': medium, 'address': address, + 'id_server': id_server, }, ) |