mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-18 07:24:00 +01:00
15 lines
414 B
Python
15 lines
414 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("login/", views.UserLoginView.as_view(), name="login"),
|
|
# path("login/fallback/", views.UserLoginView.as_view(), name="fallback_login"),
|
|
path("logout/", views.logout_view, name="logout"),
|
|
path(
|
|
"user/toggle-amount-visibility/",
|
|
views.toggle_amount_visibility,
|
|
name="toggle_amount_visibility",
|
|
),
|
|
]
|