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

View File

@@ -32,6 +32,7 @@ INSTALLED_APPS = [
'fetcher.apps.FetcherConfig',
'users.apps.UsersConfig',
'views.apps.ViewsConfig',
'lists.apps.ListsConfig',
]
"""Middlewares on every call"""

View File

@@ -10,6 +10,7 @@ urlpatterns = [
path('auth/', include('users.urls')),
path('api/brainz/', include('fetcher.urls')),
path('api/users/', include('users.api_urls')),
path('api/lists/', include('lists.urls')),
]
handler400 = 'views.views.handle400'