src/restapi/urls.py
author durandn
Fri, 05 Aug 2016 14:48:52 +0200
changeset 103 7a7f44c3b124
parent 6 37baf9d13f32
permissions -rw-r--r--
*properly* fix sending two notifications to annotation author when creating comment

from django.conf.urls import url
from . import views

urlpatterns = [
	url(r'^$', views.index, name='index'),
	url(r'annotation$', views.annotation_list),
	url(r'annotation/(?P<pk>[0-9]+)/$', views.get)
]