summaryrefslogtreecommitdiff
path: root/food_project/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'food_project/urls.py')
-rw-r--r--food_project/urls.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/food_project/urls.py b/food_project/urls.py
index ab55255..8acbe51 100644
--- a/food_project/urls.py
+++ b/food_project/urls.py
@@ -15,8 +15,10 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
-from django.urls import path
+from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
+ path('api/', include('kitchen.urls')),
+ path('api-auth/', include('rest_framework.urls')), # browsable API login
]