0 purchases
aclvlpermissions 0.1.0
My Django Permissions
A custom Django permissions package.
Installation
pip install aclvl_permissions
Usage
In your Django project, you can use the custom permission as follows:
from my_django_permissions.permissions import AccessLevelPermission
class MyView(APIView):
permission_classes = [AccessLevelPermission]
required_access_levels = ['view_all_model', 'view_owner_model', 'create_all_model']
view_key = 'model'
License
This project is licensed under the MIT License - see the LICENSE file for details.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.