mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-11 18:34:19 -05:00
9 lines
189 B
Python
9 lines
189 B
Python
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()}
|