Please enable JavaScript.
Coggle requires JavaScript to display documents.
Django REST framework - Coggle Diagram
Django REST framework
Permissions
Permission classes
-
-
In Built
-
-
NOTE the built in permissions defined in the rest_framework.permissions do not implement the methods necessary to check object permissions.
-
-
-
What are permissions
Basically Permissions help to provide different level of access/control of the API to different users by restricting the access to some views
-
How defined or used
Create the required Permission classes and set them on the views and if the view is called then all the permissions will be checked if any one fails the view code not execute
-