aboutsummaryrefslogtreecommitdiffstats
path: root/server/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'server/urls.py')
-rw-r--r--server/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/urls.py b/server/urls.py
index b744730..2095450 100644
--- a/server/urls.py
+++ b/server/urls.py
@@ -1,4 +1,4 @@
-from django.urls import path, re_path, include
+from django.urls import path
from . import views
@@ -14,4 +14,5 @@ urlpatterns = [
path('docupload', views.upload_doc, name='docupload'),
path('docpreview', views.docpreview, name='docpreview'),
path('progress', views.get_progress, name='progress'),
+ path('request', views.data_request, name='request'),
]