11 lines
304 B
Python
11 lines
304 B
Python
from collections import namedtuple
|
|
|
|
|
|
AclPermission = namedtuple('AclPermission', 'app, action')
|
|
|
|
# Null rule. Only useful in tests really as no access group should have this.
|
|
NONE = AclPermission('None', 'None')
|
|
|
|
# Can list/access abuse reports
|
|
ABUSEREPORTS_EDIT = AclPermission('AbuseReports', 'Edit')
|