-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
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?
Reactions are currently unavailable