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/handlers | |
parent | Delete MSC1711_certificates_FAQ.md (#11907) (diff) | |
download | synapse-02632b3504ad4512c5f5a4f859b3fe326b19c788.tar.xz |
Stabilise MSC3231 (Token Based Registration) (#11867)
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/ui_auth/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/ui_auth/__init__.py b/synapse/handlers/ui_auth/__init__.py index 13b0c61d2e..56eee4057f 100644 --- a/synapse/handlers/ui_auth/__init__.py +++ b/synapse/handlers/ui_auth/__init__.py @@ -38,4 +38,4 @@ class UIAuthSessionDataConstants: # used during registration to store the registration token used (if required) so that: # - we can prevent a token being used twice by one session # - we can 'use up' the token after registration has successfully completed - REGISTRATION_TOKEN = "org.matrix.msc3231.login.registration_token" + REGISTRATION_TOKEN = "m.login.registration_token" |