From 5374df42318ffd5fa8f33e7d09bacf6ccafaa5cb Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Mon, 8 Feb 2021 10:55:20 +0100 Subject: [PATCH] backend: add a missing comma --- backend/network_inventory/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/network_inventory/settings/base.py b/backend/network_inventory/settings/base.py index 43358c5..5ebe5a5 100644 --- a/backend/network_inventory/settings/base.py +++ b/backend/network_inventory/settings/base.py @@ -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', ),