diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2023-02-03 10:51:15 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2023-02-09 21:29:59 +0000 |
commit | 0651339419af79faeb391aa04f932456d013c36d (patch) | |
tree | d883e9b433907a91501cdb1467e1595a80c7ce9b /synapse | |
parent | Add documentation for new module api callback methods (diff) | |
download | synapse-0651339419af79faeb391aa04f932456d013c36d.tar.xz |
Deprecate `on_threepid_bind`
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/events/third_party_rules.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/events/third_party_rules.py b/synapse/events/third_party_rules.py index 9a8af1023b..902bd0ca43 100644 --- a/synapse/events/third_party_rules.py +++ b/synapse/events/third_party_rules.py @@ -530,6 +530,9 @@ class ThirdPartyEventRules: local homeserver, not when it's created on an identity server (and then kept track of so that it can be unbound on the same IS later on). + THIS MODULE CALLBACK METHOD HAS BEEN DEPRECATED. Please use the + `on_add_user_third_party_identifier` callback method instead. + Args: user_id: the user being associated with the threepid. medium: the threepid's medium. |