From 1476fe37ca03dcbad461eb758f3e6b6f0e5110c6 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 8 Jan 2023 02:51:35 -0500 Subject: [PATCH] Auth is jamming up the works right now --- vrobbler/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vrobbler/settings.py b/vrobbler/settings.py index 8f0ca86..68da4d9 100644 --- a/vrobbler/settings.py +++ b/vrobbler/settings.py @@ -159,8 +159,8 @@ AUTHENTICATION_BACKENDS = [ REST_FRAMEWORK = { "DEFAULT_PERMISSION_CLASSES": ("rest_framework.permissions.AllowAny",), 'DEFAULT_AUTHENTICATION_CLASSES': [ - 'rest_framework.authentication.BasicAuthentication', - 'rest_framework.authentication.TokenAuthentication', + #'rest_framework.authentication.BasicAuthentication', + #'rest_framework.authentication.TokenAuthentication', 'rest_framework.authentication.SessionAuthentication', ], "DEFAULT_PAGINATION_CLASS": "rest_framework.pagination.PageNumberPagination",