* 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
19 lines
469 B
Python
19 lines
469 B
Python
"""
|
|
Learner Home URL routing configuration
|
|
"""
|
|
|
|
from django.urls import include, re_path
|
|
|
|
from lms.djangoapps.learner_home import views
|
|
|
|
app_name = "learner_home"
|
|
|
|
# Learner Dashboard Routing
|
|
urlpatterns = [
|
|
re_path(r"^init/?", views.InitializeView.as_view(), name="initialize"),
|
|
re_path(r"^mock/", include("lms.djangoapps.learner_home.mock.urls")),
|
|
re_path(
|
|
r"^recommendation/", include("lms.djangoapps.learner_home.recommendations.urls")
|
|
),
|
|
]
|