mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-01-17 14:36:44 +01:00
22 lines
378 B
Python
22 lines
378 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"toasts/",
|
|
views.toasts,
|
|
name="toasts",
|
|
),
|
|
path(
|
|
"ui/month-year-picker/",
|
|
views.month_year_picker,
|
|
name="month_year_picker",
|
|
),
|
|
path(
|
|
"cache/invalidate/",
|
|
views.invalidate_cache,
|
|
name="invalidate_cache",
|
|
),
|
|
]
|