Files
edx-platform/lms/djangoapps/learner_home/urls.py
Nathan Sprenkle b6bc647e18 fix: fix routing for mock path (#31047)
Co-authored-by: nsprenkle <nsprenkle@2u.com>
2022-09-28 11:12:01 -04:00

16 lines
392 B
Python

"""Learner home URL routing configuration"""
from django.urls import re_path
from lms.djangoapps.learner_home import mock_views, views
app_name = "learner_home"
# Learner Dashboard Routing
urlpatterns = [
re_path(r"^init/?", views.InitializeView.as_view(), name="initialize"),
re_path(
r"^mock/init/?", mock_views.InitializeView.as_view(), name="mock_initialize"
),
]