mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-05 01:19:29 +00:00
renamed django app folder to backend
This commit is contained in:
9
backend/user/urls.py
Normal file
9
backend/user/urls.py
Normal file
@@ -0,0 +1,9 @@
|
||||
"""all user API urls"""
|
||||
|
||||
from django.urls import path
|
||||
from user import views
|
||||
|
||||
urlpatterns = [
|
||||
path("login/", views.LoginApiView.as_view(), name="api-user-login"),
|
||||
path("me/", views.UserConfigView.as_view(), name="api-user-me"),
|
||||
]
|
||||
Reference in New Issue
Block a user