mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2025-12-31 20:00:38 -05:00
11 lines
252 B
Python
11 lines
252 B
Python
# Permission Config
|
|
from cookbook.helper.permission_helper import CustomIsUser, CustomIsOwner, CustomIsAdmin, CustomIsGuest
|
|
|
|
|
|
class PermissionConfig:
|
|
BOOKS = {
|
|
'owner': True,
|
|
'groups': ['user'],
|
|
'drf': [CustomIsUser],
|
|
}
|