0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-26 14:38:18 +02:00

By default, join policy is "invite"

This commit is contained in:
Luke Barnard 2018-04-06 11:44:18 +01:00
parent b4478e586f
commit 6bd1b7053e

View file

@ -905,7 +905,7 @@ def _parse_join_policy_dict(join_policy_dict):
"""
join_policy_type = join_policy_dict.get("type")
if not join_policy_type:
return True
return "invite"
if join_policy_type not in ("invite", "open"):
raise SynapseError(