mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-10 09:17:48 +01:00
14 lines
244 B
Python
14 lines
244 B
Python
from enum import Enum, unique
|
|
|
|
|
|
@unique
|
|
class Permission(Enum):
|
|
Allow = True
|
|
Deny = False
|
|
|
|
|
|
@unique
|
|
class Group(Enum):
|
|
Everyone = 'aiohttp_auth.acl.group.Everyone'
|
|
AuthenticatedUser = 'aiohttp_auth.acl.group.AuthenticatedUser'
|
|
|