14 lines
408 B
Python
14 lines
408 B
Python
from django.urls import path, include
|
|
|
|
from users.views import (LoginView, RegisterView,
|
|
LogoutView, ConfigView)
|
|
|
|
app_name = "users"
|
|
|
|
urlpatterns = [
|
|
path("login", LoginView.as_view(), name="login"),
|
|
path("register", RegisterView.as_view(), name="register"),
|
|
path("logout", LogoutView.as_view(), name="logout"),
|
|
path("config", ConfigView.as_view(), name="config"),
|
|
]
|