mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04: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()}
|