Skip to content

Instantly share code, notes, and snippets.

@bismitaguha
Created June 14, 2020 19:33
Show Gist options
  • Save bismitaguha/62f61b3e38ac3963ca2afb51abb6dd05 to your computer and use it in GitHub Desktop.
Save bismitaguha/62f61b3e38ac3963ca2afb51abb6dd05 to your computer and use it in GitHub Desktop.
from django.urls import path
from rest_framework_simplejwt import TokenObtainPairView, TokenRefreshView
urlpatterns = [
# Other URLs...
path('api/token/', TokenObtainPairView, name='token_obtain_pair'),
path('api/token/refresh/', TokenRefreshView, name='token_refresh'),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment