mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 13:23:54 +01:00
Allow "unavailable" presence status for /sync (#4592)
* Allow "unavailable" presence status for /sync Closes #3772, closes #3779 Signed-off-by: Valentin Anger <valentin.an.1999@gmail.com> * Add changelog for PR 4592
This commit is contained in:
parent
56710c7df5
commit
2dc2b6e9f1
3 changed files with 4 additions and 1 deletions
2
changelog.d/4592.feature
Normal file
2
changelog.d/4592.feature
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
Allow the "unavailable" presence status for /sync.
|
||||||
|
This change makes Synapse compliant with r0.4.0 of the Client-Server specification.
|
|
@ -75,7 +75,7 @@ class SyncRestServlet(RestServlet):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
PATTERNS = client_v2_patterns("/sync$")
|
PATTERNS = client_v2_patterns("/sync$")
|
||||||
ALLOWED_PRESENCE = set(["online", "offline"])
|
ALLOWED_PRESENCE = set(["online", "offline", "unavailable"])
|
||||||
|
|
||||||
def __init__(self, hs):
|
def __init__(self, hs):
|
||||||
super(SyncRestServlet, self).__init__()
|
super(SyncRestServlet, self).__init__()
|
||||||
|
|
|
@ -38,6 +38,7 @@ class VersionsRestServlet(RestServlet):
|
||||||
"r0.1.0",
|
"r0.1.0",
|
||||||
"r0.2.0",
|
"r0.2.0",
|
||||||
"r0.3.0",
|
"r0.3.0",
|
||||||
|
"r0.4.0",
|
||||||
],
|
],
|
||||||
# as per MSC1497:
|
# as per MSC1497:
|
||||||
"unstable_features": {
|
"unstable_features": {
|
||||||
|
|
Loading…
Reference in a new issue