jwt토큰 갱신 경로 오류 수정
All checks were successful
Build And Test / build-and-push (push) Successful in 1m54s
All checks were successful
Build And Test / build-and-push (push) Successful in 1m54s
This commit is contained in:
@ -6,7 +6,7 @@ urlpatterns = [
|
||||
path('register/', RegisterView.as_view(), name='register'),
|
||||
# path('login/', TokenObtainPairView.as_view(), name='token_obtain_pair'),
|
||||
path('login/', CustomTokenObtainPairView.as_view(), name='token_obtain_pair'),
|
||||
path('refresh/', TokenRefreshView.as_view(), name='token_refresh'),
|
||||
path('token/refresh/', TokenRefreshView.as_view(), name='token_refresh'),
|
||||
path('verify/', TokenVerifyView.as_view(), name='token_verify'),
|
||||
path('me/', MeView.as_view(), name='me'),
|
||||
]
|
||||
|
Reference in New Issue
Block a user