summary refs log tree commit diff
path: root/synapse/api/constants.py
diff options
context:
space:
mode:
authorBrendan Abolivier <babolivier@matrix.org>2021-03-22 14:28:19 +0100
committerGitHub <noreply@github.com>2021-03-22 14:28:19 +0100
commite09838c78fe63a7d702ac87dca8365310457bef5 (patch)
treee4877c8022cda6b7953edc8066a6af8dc329082a /synapse/api/constants.py
parentfix mypy (diff)
parentIncorporate review (diff)
downloadsynapse-e09838c78fe63a7d702ac87dca8365310457bef5.tar.xz
Merge pull request #9644 from matrix-org/babolivier/msc3026
Implement MSC3026: busy presence state
Diffstat (limited to 'synapse/api/constants.py')
-rw-r--r--synapse/api/constants.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py
index ed050c8104..8f37d2cf3b 100644
--- a/synapse/api/constants.py
+++ b/synapse/api/constants.py
@@ -51,6 +51,7 @@ class PresenceState:
     OFFLINE = "offline"
     UNAVAILABLE = "unavailable"
     ONLINE = "online"
+    BUSY = "org.matrix.msc3026.busy"
 
 
 class JoinRules: