better stateless support

This commit is contained in:
Chris Caron
2019-10-28 21:54:51 -04:00
parent 2f21c0761d
commit 9a3648ca30
7 changed files with 291 additions and 47 deletions

View File

@ -44,4 +44,7 @@ urlpatterns = [
re_path(
r'^notify/(?P<key>[\w_-]{1,64})/?',
views.NotifyView.as_view(), name='notify'),
re_path(
r'^notify/?',
views.StatelessNotifyView.as_view(), name='s_notify'),
]