Spaces:
Runtime error
Runtime error
File size: 313 Bytes
ffd36e0 | 1 2 3 4 5 6 7 8 9 10 11 | from django.urls import path
from .views import GapAnalysisView
# Recommendations are mounted at /api/recommendations/ via
# apps.analysis.urls_recommendations — do not re-add them here or reverse()
# will hit an ambiguous name.
urlpatterns = [
path('', GapAnalysisView.as_view(), name='gap-analysis'),
]
|