diff options
author | Kegan Dougal <kegan@matrix.org> | 2015-02-05 15:32:45 +0000 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2015-02-05 15:32:45 +0000 |
commit | fc8bcc809d91c461eacb9ce466adbba29d814042 (patch) | |
tree | e85b9889a30926eef8f6a58744529431e3caea65 /synapse/push/rulekinds.py | |
parent | Fix unit tests. (diff) | |
parent | Give server default rules the 'default' attribute and fix various brokenness. (diff) | |
download | synapse-fc8bcc809d91c461eacb9ce466adbba29d814042.tar.xz |
Merge branch 'develop' into application-services
Diffstat (limited to 'synapse/push/rulekinds.py')
-rw-r--r-- | synapse/push/rulekinds.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/synapse/push/rulekinds.py b/synapse/push/rulekinds.py new file mode 100644 index 0000000000..763bdee58e --- /dev/null +++ b/synapse/push/rulekinds.py @@ -0,0 +1,8 @@ +PRIORITY_CLASS_MAP = { + 'underride': 1, + 'sender': 2, + 'room': 3, + 'content': 4, + 'override': 5, + } +PRIORITY_CLASS_INVERSE_MAP = {v: k for k, v in PRIORITY_CLASS_MAP.items()} |