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:
Valentin Anger 2019-02-08 21:09:56 +00:00 committed by Richard van der Hoff
parent 56710c7df5
commit 2dc2b6e9f1
3 changed files with 4 additions and 1 deletions

View file

@ -75,7 +75,7 @@ class SyncRestServlet(RestServlet):
"""
PATTERNS = client_v2_patterns("/sync$")
ALLOWED_PRESENCE = set(["online", "offline"])
ALLOWED_PRESENCE = set(["online", "offline", "unavailable"])
def __init__(self, hs):
super(SyncRestServlet, self).__init__()