diff options
author | Jonathan de Jong <jonathan@automatia.nl> | 2022-02-04 13:15:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-04 12:15:13 +0000 |
commit | 02632b3504ad4512c5f5a4f859b3fe326b19c788 (patch) | |
tree | a23ed29bbea62e51471f65a059ca3b7929f71e42 /synapse/api | |
parent | Delete MSC1711_certificates_FAQ.md (#11907) (diff) | |
download | synapse-02632b3504ad4512c5f5a4f859b3fe326b19c788.tar.xz |
Stabilise MSC3231 (Token Based Registration) (#11867)
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py index 52c083a20b..36ace7c613 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -81,7 +81,7 @@ class LoginType: TERMS: Final = "m.login.terms" SSO: Final = "m.login.sso" DUMMY: Final = "m.login.dummy" - REGISTRATION_TOKEN: Final = "org.matrix.msc3231.login.registration_token" + REGISTRATION_TOKEN: Final = "m.login.registration_token" # This is used in the `type` parameter for /register when called by |