Project unread postbox work with shared authorization
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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",
|
||||
]
|
||||
Reference in New Issue
Block a user