diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2019-10-29 18:35:49 +0000 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2019-10-30 14:27:15 +0000 |
commit | fa0dcbc8fa396fa78aabc524728e08fd84b70a0c (patch) | |
tree | 6605084f19867cd118f7433cabba373b666b031a /synapse/api | |
parent | Add database table for keeping track of labels on events (diff) | |
download | synapse-fa0dcbc8fa396fa78aabc524728e08fd84b70a0c.tar.xz |
Store labels for new events
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/constants.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py index 312196675e..999ec02fd9 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -138,3 +138,6 @@ class LimitBlockingTypes(object): MONTHLY_ACTIVE_USER = "monthly_active_user" HS_DISABLED = "hs_disabled" + + +LabelsField = "org.matrix.labels" |