Fix default API permissions

This commit is contained in:
Sascha Ißbrücker 2021-01-16 00:29:37 +01:00
parent bea0fe3b70
commit 94eb55896d

View file

@ -151,6 +151,9 @@ REST_FRAMEWORK = {
'rest_framework.authentication.TokenAuthentication',
'rest_framework.authentication.SessionAuthentication',
],
'DEFAULT_PERMISSION_CLASSES': [
'rest_framework.permissions.IsAuthenticated'
],
'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.LimitOffsetPagination',
'PAGE_SIZE': 100
}