From 86e15667298b0286c32e80d6bee9c4365cf79bed Mon Sep 17 00:00:00 2001 From: Hironsan Date: Tue, 30 Mar 2021 11:29:32 +0900 Subject: [PATCH] Add filepond endpoints to urls.py --- app/api/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/api/urls.py b/app/api/urls.py index 06edc4ea..8a7a1ef5 100644 --- a/app/api/urls.py +++ b/app/api/urls.py @@ -133,6 +133,7 @@ urlpatterns = [ name='health' ), path('auth/', include('dj_rest_auth.urls')), + path('fp/', include('django_drf_filepond.urls')), path( route='me', view=views.Me.as_view(),