backend: add a missing comma

This commit is contained in:
Andreas Zweili 2021-02-08 10:55:20 +01:00
parent a2deb78452
commit 5374df4231
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ REST_FRAMEWORK = {
'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.PageNumberPagination',
'PAGE_SIZE': 10,
'DEFAULT_AUTHENTICATION_CLASSES': (
'rest_framework_simplejwt.authentication.JWTAuthentication'
'rest_framework_simplejwt.authentication.JWTAuthentication',
'rest_framework.authentication.SessionAuthentication',
'rest_framework.authentication.BasicAuthentication',
),