From 2fc4a5e23e33224da01593adf4f18296af66043b Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Fri, 4 May 2018 12:40:39 +1000 Subject: [PATCH] Change the webmention acceptance URL to /webmentions - it feels a little more RESTful --- webmention/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webmention/urls.py b/webmention/urls.py index 24f4022..ac307ca 100644 --- a/webmention/urls.py +++ b/webmention/urls.py @@ -3,6 +3,6 @@ from . import views app_name = 'webmention' urlpatterns = ( - path('', views.accept, name='accept'), + path('s', views.accept, name='accept'), path('s/', views.status, name='status') )