mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-18 07:24:00 +01:00
26 lines
687 B
Python
26 lines
687 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("", views.index, name="index"),
|
|
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",
|
|
),
|
|
path(
|
|
"user/toggle-sound-playing/",
|
|
views.toggle_sound_playing,
|
|
name="toggle_sound_playing",
|
|
),
|
|
path(
|
|
"user/settings/",
|
|
views.update_settings,
|
|
name="user_settings",
|
|
),
|
|
]
|