diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2021-03-22 14:28:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 14:28:19 +0100 |
commit | e09838c78fe63a7d702ac87dca8365310457bef5 (patch) | |
tree | e4877c8022cda6b7953edc8066a6af8dc329082a /synapse/api/constants.py | |
parent | fix mypy (diff) | |
parent | Incorporate review (diff) | |
download | synapse-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.py | 1 |
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: |