mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-04 02:34:50 -04:00
Remove the experimental flag for knocking and use stable prefixes / endpoints. (#10167)
* Room version 7 for knocking. * Stable prefixes and endpoints (both client and federation) for knocking. * Removes the experimental configuration flag.
This commit is contained in:
parent
aac2c49b9b
commit
9e5ab6dd58
13 changed files with 33 additions and 96 deletions
|
@ -41,7 +41,7 @@ class Membership:
|
|||
|
||||
INVITE = "invite"
|
||||
JOIN = "join"
|
||||
KNOCK = "xyz.amorgan.knock"
|
||||
KNOCK = "knock"
|
||||
LEAVE = "leave"
|
||||
BAN = "ban"
|
||||
LIST = (INVITE, JOIN, KNOCK, LEAVE, BAN)
|
||||
|
@ -58,7 +58,7 @@ class PresenceState:
|
|||
|
||||
class JoinRules:
|
||||
PUBLIC = "public"
|
||||
KNOCK = "xyz.amorgan.knock"
|
||||
KNOCK = "knock"
|
||||
INVITE = "invite"
|
||||
PRIVATE = "private"
|
||||
# As defined for MSC3083.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue