Browse Source

Update the value of group_creation_prefix in sample config. (#8992)

Removes the trailing slash with causes issues with matrix.to/Element.
Jerin J Titus 3 years ago
parent
commit
cfcf5541b4
3 changed files with 3 additions and 2 deletions
  1. 1 0
      changelog.d/8992.doc
  2. 1 1
      docs/sample_config.yaml
  3. 1 1
      synapse/config/groups.py

+ 1 - 0
changelog.d/8992.doc

@@ -0,0 +1 @@
+Update the example value of `group_creation_prefix` in the sample configuration.

+ 1 - 1
docs/sample_config.yaml

@@ -2366,7 +2366,7 @@ spam_checker:
 # If enabled, non server admins can only create groups with local parts
 # starting with this prefix
 #
-#group_creation_prefix: "unofficial/"
+#group_creation_prefix: "unofficial_"
 
 
 

+ 1 - 1
synapse/config/groups.py

@@ -32,5 +32,5 @@ class GroupsConfig(Config):
         # If enabled, non server admins can only create groups with local parts
         # starting with this prefix
         #
-        #group_creation_prefix: "unofficial/"
+        #group_creation_prefix: "unofficial_"
         """