Added some logic

This commit is contained in:
maciejrusek
2026-03-12 23:24:14 +01:00
parent ca605ac59d
commit 8b55be1b9c
48 changed files with 240 additions and 7 deletions

View File

@@ -5,9 +5,14 @@ from rest_framework_simplejwt.views import (
TokenVerifyView
)
from apps.authentication.views import RegisterView
urlpatterns = [
path('login/', TokenObtainPairView.as_view(), name='token_obtain_pair'),
#path('signup/', ),
path('register', RegisterView.as_view()),
path('refresh/', TokenRefreshView.as_view(), name='token_refresh'),
path('verify/', TokenVerifyView.as_view(), name='token_verify'),