mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 00:34:47 -04:00
add disable_3pid_changes
This commit is contained in:
parent
20545a2199
commit
99bbe177b6
3 changed files with 21 additions and 0 deletions
|
@ -131,6 +131,7 @@ class RegistrationConfig(Config):
|
|||
|
||||
self.disable_set_displayname = config.get("disable_set_displayname", False)
|
||||
self.disable_set_avatar_url = config.get("disable_set_avatar_url", False)
|
||||
self.disable_3pid_changes = config.get("disable_3pid_changes", False)
|
||||
|
||||
self.disable_msisdn_registration = config.get(
|
||||
"disable_msisdn_registration", False
|
||||
|
@ -341,6 +342,11 @@ class RegistrationConfig(Config):
|
|||
#disable_set_displayname: false
|
||||
#disable_set_avatar_url: false
|
||||
|
||||
# If true, stop users from trying to change the 3PIDs associated with
|
||||
# their accounts.
|
||||
#
|
||||
#disable_3pid_changes: false
|
||||
|
||||
# Users who register on this homeserver will automatically be joined
|
||||
# to these rooms
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue