Skip to content

Commit

Permalink
Merge pull request #339 from appsembler/esther/remove-basic-auth
Browse files Browse the repository at this point in the history
remove BasicAuthentication from views.py
  • Loading branch information
estherjsuh authored May 6, 2021
2 parents 41cca77 + cac1b30 commit 5a105a8
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 5a105a8

Please sign in to comment.