Skip to content

Commit

Permalink
remove BasicAuthentication from views.py
Browse files Browse the repository at this point in the history
  • Loading branch information
estherjsuh committed May 6, 2021
1 parent 41cca77 commit cac1b30
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions figures/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

from rest_framework import viewsets
from rest_framework.authentication import (
BasicAuthentication,
SessionAuthentication,
TokenAuthentication,
)
Expand Down Expand Up @@ -137,7 +136,6 @@ class CommonAuthMixin(object):
TODO: Consider moving this to figures.permissions
'''
authentication_classes = (
BasicAuthentication,
SessionAuthentication,
TokenAuthentication,
)
Expand All @@ -152,7 +150,6 @@ class StaffUserOnDefaultSiteAuthMixin(object):
TODO: Consider moving this to figures.permissions
'''
authentication_classes = (
BasicAuthentication,
SessionAuthentication,
TokenAuthentication,
)
Expand Down

0 comments on commit cac1b30

Please sign in to comment.