Upgrade min.ie packaging

This commit is contained in:
Jonathan Cremin 2025-05-29 15:57:37 +01:00
parent c8000380b3
commit 20d395159b
8 changed files with 189 additions and 197 deletions

View file

@ -1,7 +1,7 @@
from django.conf.urls import url
from django.urls import include, re_path
from . import views
urlpatterns = [
url(r'^$', views.home, name='home'),
url(r'(.*)', views.catchall, name='short'),
re_path(r'^$', views.home, name='home'),
re_path(r'(.*)', views.catchall, name='short'),
]