Change the webmention acceptance URL to /webmentions - it feels a little more RESTful

This commit is contained in:
Danielle McLean 2018-05-04 12:40:39 +10:00
parent 30634f9ec2
commit 2fc4a5e23e
Signed by: 00dani
GPG Key ID: 8EB789DDF3ABD240
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@ from . import views
app_name = 'webmention' app_name = 'webmention'
urlpatterns = ( urlpatterns = (
path('', views.accept, name='accept'), path('s', views.accept, name='accept'),
path('s/<int:mention_id>', views.status, name='status') path('s/<int:mention_id>', views.status, name='status')
) )