Fix space settings using join rule private instead of invite

This commit is contained in:
Michael Telatynski 2021-06-25 10:41:45 +01:00
parent 2b9e2e2e85
commit 5facee56b0
2 changed files with 5 additions and 2 deletions

View file

@ -33,6 +33,9 @@ export enum JoinRule {
Public = "public",
Knock = "knock",
Invite = "invite",
/**
* @deprecated Reserved. Should not be used.
*/
Private = "private",
}