Issue #9 y #13 API basica de lista

This commit is contained in:
Daniel Cortes
2020-07-04 00:39:36 -04:00
parent 76a65371ce
commit f3a43de9ef
11 changed files with 449 additions and 13 deletions

9
lists/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from django.urls import path
from lists import views
urlpatterns = [
path('list/<int:user_id>/', views.list_view),
path('list/<int:user_id>/<int:list_item_id>/', views.list_item_view),
path('tag/<int:user_id>/', views.tag_view)
]