src/restapi/urls.py
author durandn
Fri, 05 Aug 2016 10:01:50 +0200
changeset 100 8ec8aced3f68
parent 6 37baf9d13f32
permissions -rw-r--r--
small fixes on comment page calculation + added functionality to clear unread notification from button in user home + quick css fixes

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)
]