lemoncurry/webmention/urls.py

9 lines
196 B
Python
Raw Permalink Normal View History

2018-05-03 22:34:52 -04:00
from django.urls import path
from . import views
app_name = 'webmention'
urlpatterns = (
path('s', views.accept, name='accept'),
2018-05-03 22:34:52 -04:00
path('s/<int:mention_id>', views.status, name='status')
)