diff options
author | Erik Johnston <erik@matrix.org> | 2019-01-25 14:11:17 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-01-25 14:11:17 +0000 |
commit | 431e485914b01eb1b245e37df814ff5bac110be1 (patch) | |
tree | 1262900b08616aa08768d9883349b11725218528 /synapse/config/registration.py | |
parent | Newsfile (diff) | |
parent | Fix quoting for allowed_local_3pids example config (#4476) (diff) | |
download | synapse-431e485914b01eb1b245e37df814ff5bac110be1.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into erikj/sqlite_native_upsert
Diffstat (limited to 'synapse/config/registration.py')
-rw-r--r-- | synapse/config/registration.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/synapse/config/registration.py b/synapse/config/registration.py index fe520d6855..d808a989f3 100644 --- a/synapse/config/registration.py +++ b/synapse/config/registration.py @@ -84,11 +84,11 @@ class RegistrationConfig(Config): # # allowed_local_3pids: # - medium: email - # pattern: ".*@matrix\\.org" + # pattern: '.*@matrix\\.org' # - medium: email - # pattern: ".*@vector\\.im" + # pattern: '.*@vector\\.im' # - medium: msisdn - # pattern: "\\+44" + # pattern: '\\+44' # If set, allows registration by anyone who also has the shared # secret, even if registration is otherwise disabled. |