* refactor: remove old profiling function * refactor: move mocks into separate directory * refactor: move recommendations code into a new dir * docs: docstring consistency and branding updates * docs: add ADR for core versus experimental code
14 lines
280 B
Python
14 lines
280 B
Python
"""Learner home URL routing configuration"""
|
|
|
|
from django.urls import re_path
|
|
|
|
from lms.djangoapps.learner_home.recommendations import views
|
|
|
|
urlpatterns = [
|
|
re_path(
|
|
r"^courses/$",
|
|
views.CourseRecommendationApiView.as_view(),
|
|
name="courses",
|
|
),
|
|
]
|