Skip to content

Commit 7ed7c69

Browse files
added an endpoint for LRM to consume options
1 parent 2fe6950 commit 7ed7c69

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

feedback/urls.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
from django.urls import path
22

3-
from .views import ContactFormModelView, ContentCurationRequestView
3+
from .views import (
4+
ContactFormModelView,
5+
ContentCurationRequestView,
6+
FeedbackFormDropdownListView,
7+
)
48

59
app_name = "feedback"
610
urlpatterns = [
711
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+
),
817
path(
918
"content-curation-request-api/",
1019
ContentCurationRequestView.as_view(),

0 commit comments

Comments
 (0)