You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
446 B
13 lines
446 B
|
|
# Rest Framework configuration
|
|
REST_FRAMEWORK = {
|
|
# Use Django's standard `django.contrib.auth` permissions,
|
|
# or allow read-only access for unauthenticated users.
|
|
# 'DEFAULT_PERMISSION_CLASSES': [
|
|
# 'rest_framework.permissions.IsAuthenticated',
|
|
# ],
|
|
'DEFAULT_AUTHENTICATION_CLASSES': [
|
|
'rest_framework.authentication.BasicAuthentication',
|
|
'rest_framework.authentication.TokenAuthentication',
|
|
]
|
|
}
|
|
|