26 lines
671 B
Python
26 lines
671 B
Python
from __future__ import annotations
|
|
|
|
|
|
READ_SCOPE = "postbox:postbox:read"
|
|
SEND_SCOPE = "postbox:message:write"
|
|
REPLY_SCOPE = "postbox:message:reply"
|
|
ACKNOWLEDGE_SCOPE = "postbox:message:acknowledge"
|
|
DELIVERY_SCOPE = "postbox:delivery:write"
|
|
BINDING_ADMIN_SCOPE = "postbox:binding:admin"
|
|
TEMPLATE_ADMIN_SCOPE = "postbox:template:admin"
|
|
CONFIDENTIAL_SCOPE = "postbox:classification:confidential"
|
|
RESTRICTED_SCOPE = "postbox:classification:restricted"
|
|
|
|
|
|
__all__ = [
|
|
"ACKNOWLEDGE_SCOPE",
|
|
"BINDING_ADMIN_SCOPE",
|
|
"CONFIDENTIAL_SCOPE",
|
|
"DELIVERY_SCOPE",
|
|
"READ_SCOPE",
|
|
"REPLY_SCOPE",
|
|
"RESTRICTED_SCOPE",
|
|
"SEND_SCOPE",
|
|
"TEMPLATE_ADMIN_SCOPE",
|
|
]
|