mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-04-18 17:53:39 +00:00
Don't require preset to create room
This commit is contained in:
parent
78440083df
commit
7d246f906a
1 changed files with 9 additions and 7 deletions
|
@ -87,6 +87,7 @@ func (r createRoomRequest) Validate() *util.JSONResponse {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if r.Preset != "" {
|
||||||
switch r.Preset {
|
switch r.Preset {
|
||||||
case presetPrivateChat, presetTrustedPrivateChat, presetPublicChat:
|
case presetPrivateChat, presetTrustedPrivateChat, presetPublicChat:
|
||||||
break
|
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'"),
|
JSON: jsonerror.BadJSON("preset must be any of 'private_chat', 'trusted_private_chat', 'public_chat'"),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue