Fix testproj duplicate operation id

Fixes #139
This commit is contained in:
Cristi Vîjdea
2018-06-16 15:41:51 +03:00
parent d627a1bc5d
commit 6ac58b8cf7
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -13,6 +13,6 @@ router.register(r'recursive', views.TodoRecursiveView)
urlpatterns = router.urls
urlpatterns += [
url(r'^(?P<todo_id>\d+)/yetanother/(?P<yetanother_id>\d+)/$',
url(r'^(?P<todo_id>\d+)/yetanothers/(?P<yetanother_id>\d+)/$',
views.NestedTodoView.as_view(), ),
]