Don't require preset to create room

This commit is contained in:
Andrew Morgan 2018-06-12 16:24:32 +01:00
parent 78440083df
commit 7d246f906a

View file

@ -87,6 +87,7 @@ func (r createRoomRequest) Validate() *util.JSONResponse {
}
}
}
if r.Preset != "" {
switch r.Preset {
case presetPrivateChat, presetTrustedPrivateChat, presetPublicChat:
break
@ -96,6 +97,7 @@ func (r createRoomRequest) Validate() *util.JSONResponse {
JSON: jsonerror.BadJSON("preset must be any of 'private_chat', 'trusted_private_chat', 'public_chat'"),
}
}
}
return nil
}