jwt토큰 갱신 경로 오류 수정
All checks were successful
Build And Test / build-and-push (push) Successful in 1m54s

This commit is contained in:
2025-05-20 08:19:30 +09:00
parent ec6e2ed4da
commit 9c84584c36
2 changed files with 2 additions and 2 deletions

View File

@ -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'),
]

View File

@ -1 +1 @@
0.0.8
0.0.8-r1