init
This commit is contained in:
9
app/user/urls.py
Normal file
9
app/user/urls.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django.urls import path
|
||||
|
||||
from .views import UserLoginView, RegisterView
|
||||
|
||||
app_name = "user"
|
||||
urlpatterns = [
|
||||
path("login/", UserLoginView.as_view(), name="login"),
|
||||
path("register/<uuid:token>/", RegisterView.as_view(), name="register"),
|
||||
]
|
||||
Reference in New Issue
Block a user