We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fe6950 commit 7ed7c69Copy full SHA for 7ed7c69
feedback/urls.py
@@ -1,10 +1,19 @@
1
from django.urls import path
2
3
-from .views import ContactFormModelView, ContentCurationRequestView
+from .views import (
4
+ ContactFormModelView,
5
+ ContentCurationRequestView,
6
+ FeedbackFormDropdownListView,
7
+)
8
9
app_name = "feedback"
10
urlpatterns = [
11
path("contact-us-api/", ContactFormModelView.as_view(), name="contact-us-api"),
12
+ path(
13
+ "feedback-form-dropdown-options-api/",
14
+ FeedbackFormDropdownListView.as_view(),
15
+ name="feedback-form-dropdown-options-api",
16
+ ),
17
path(
18
"content-curation-request-api/",
19
ContentCurationRequestView.as_view(),
0 commit comments