Reoraganized project

This commit is contained in:
ITQ
2024-03-02 13:22:29 +03:00
parent bcdcfaf7f2
commit ed687650ba
27 changed files with 58 additions and 45 deletions
+20
View File
@@ -0,0 +1,20 @@
from django.urls import path
import api.users.views
urlpatterns = [
path(
"auth/register",
api.users.views.RegisterUserApiView.as_view(),
name="register",
),
path(
"auth/sign-in",
api.users.views.SigninUserApiView.as_view(),
name="sign-in",
),
path(
"me/profile",
api.users.views.ProfileMeApiView.as_view(),
)
]