[chore] Global project refactoring

This commit is contained in:
ITQ
2024-04-01 11:20:07 +03:00
parent 0a8b3773f5
commit 5c64e1f3b9
49 changed files with 731 additions and 496 deletions
+26
View File
@@ -0,0 +1,26 @@
from django.urls import path
import api.users.views
urlpatterns = [
path(
"/sign-up/",
api.users.views.SignupUserApiView.as_view(),
name="sign-up",
),
path(
"/sign-in/",
api.users.views.SigninUserApiView.as_view(),
name="sign-in",
),
path(
"/me/profile/",
api.users.views.ProfileMeApiView.as_view(),
name="profile-me",
),
path(
"/me/updatePassword/",
api.users.views.PasswordChangeApiView.as_view(),
name="password-change",
),
]