mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
9 lines
213 B
Python
9 lines
213 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()}
|