Port the urls for lemonauth, lemonshort, micropub, and wellknowns to path()

This commit is contained in:
Danielle McLean 2018-05-04 12:19:54 +10:00
parent e9c46f23db
commit 70e57e4155
Signed by: 00dani
GPG key ID: 8EB789DDF3ABD240
4 changed files with 16 additions and 16 deletions

View file

@ -1,7 +1,7 @@
from django.conf.urls import url
from django.urls import path
from . import views
app_name = 'micropub'
urlpatterns = (
url('^$', views.micropub, name='micropub'),
path('', views.micropub, name='micropub'),
)