* 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
10 lines
245 B
Python
10 lines
245 B
Python
"""Learner Home mock URL routing configuration"""
|
|
|
|
from django.urls import re_path
|
|
|
|
from lms.djangoapps.learner_home.mock import mock_views
|
|
|
|
urlpatterns = [
|
|
re_path(r"^init/?", mock_views.InitializeView.as_view(), name="mock_initialize"),
|
|
]
|