From cac1b300a9707e50bebb6efbf7ecdfe39e58351a Mon Sep 17 00:00:00 2001 From: Esther Date: Thu, 6 May 2021 09:27:52 -0700 Subject: [PATCH] remove BasicAuthentication from views.py --- figures/views.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/figures/views.py b/figures/views.py index 2cdf30fe..ad19e1db 100644 --- a/figures/views.py +++ b/figures/views.py @@ -15,7 +15,6 @@ from rest_framework import viewsets from rest_framework.authentication import ( - BasicAuthentication, SessionAuthentication, TokenAuthentication, ) @@ -137,7 +136,6 @@ class CommonAuthMixin(object): TODO: Consider moving this to figures.permissions ''' authentication_classes = ( - BasicAuthentication, SessionAuthentication, TokenAuthentication, ) @@ -152,7 +150,6 @@ class StaffUserOnDefaultSiteAuthMixin(object): TODO: Consider moving this to figures.permissions ''' authentication_classes = ( - BasicAuthentication, SessionAuthentication, TokenAuthentication, )