1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/config/groups.py b/synapse/config/groups.py
index 997fa2881f..46933a904c 100644
--- a/synapse/config/groups.py
+++ b/synapse/config/groups.py
@@ -24,9 +24,11 @@ class GroupsConfig(Config):
def default_config(self, **kwargs):
return """\
# Whether to allow non server admins to create groups on this server
+ #
enable_group_creation: false
# If enabled, non server admins can only create groups with local parts
# starting with this prefix
- # group_creation_prefix: "unofficial/"
+ #
+ #group_creation_prefix: "unofficial/"
"""
|