Skip to content

Commit

Permalink
Merge pull request #38 from necaris/fix/import-of-simplejwt
Browse files Browse the repository at this point in the history
Don't _require_ rest_framework_simplejwt
  • Loading branch information
iMerica committed Apr 16, 2020
2 parents d53c447 + 506912f commit 3f61d48
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions dj_rest_auth/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
from rest_framework.permissions import AllowAny, IsAuthenticated
from rest_framework.response import Response
from rest_framework.views import APIView
from rest_framework_simplejwt.exceptions import TokenError
from rest_framework_simplejwt.tokens import RefreshToken

from .app_settings import (JWTSerializer, LoginSerializer,
PasswordChangeSerializer,
Expand Down Expand Up @@ -142,6 +140,13 @@ def logout(self, request):
status=status.HTTP_200_OK)

if getattr(settings, 'REST_USE_JWT', False):
# NOTE: this import occurs here rather than at the top level
# because JWT support is optional, and if `REST_USE_JWT` isn't
# True we shouldn't need the dependency
from rest_framework_simplejwt.exceptions import TokenError
from rest_framework_simplejwt.tokens import RefreshToken


cookie_name = getattr(settings, 'JWT_AUTH_COOKIE', None)
if cookie_name:
response.delete_cookie(cookie_name)
Expand Down

0 comments on commit 3f61d48

Please sign in to comment.