Currently there is only one permission class for api points enabled by default for all enpoints:
REST_FRAMEWORK = {
'DEFAULT_PERMISSION_CLASSES': [
'rest_framework.permissions.IsAdminUser',
], ...
}
Only admin can get/create using all (currently /api/ and '/users/') api enpoints.
Are there any requirements for permissions, groups, and perissions configurations for rest api enpoints?
Currently there is only one permission class for api points enabled by default for all enpoints:
Only admin can get/create using all (currently /api/ and '/users/') api enpoints.
Are there any requirements for permissions, groups, and perissions configurations for rest api enpoints?