diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-08-13 15:53:44 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-08-13 15:53:44 +0100 |
commit | 38c7e923312047b2c26c6ca3f15a9813159088e7 (patch) | |
tree | 819149e28fe875a9e8ee1fe22a86f4d64cdd4355 /synapse/api/constants.py | |
parent | Merge branch 'master' of github.com:matrix-org/synapse (diff) | |
parent | more quickstart fixes (diff) | |
download | synapse-38c7e923312047b2c26c6ca3f15a9813159088e7.tar.xz |
Merge branch 'master' of github.com:matrix-org/synapse
Diffstat (limited to 'synapse/api/constants.py')
-rw-r--r-- | synapse/api/constants.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py index 29687c3482..1ff1af76ec 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -37,7 +37,7 @@ class Feedback(object): class PresenceState(object): """Represents the presence state of a user.""" - OFFLINE = 0 - BUSY = 1 - ONLINE = 2 - FREE_FOR_CHAT = 3 + OFFLINE = u"offline" + UNAVAILABLE = u"unavailable" + ONLINE = u"online" + FREE_FOR_CHAT = u"free_for_chat" |