* fix: update learner home api * refactor: update learner home API pathing * fix: remove unused logger * fix: remove unused import * style: make pylint happy * style: remove extra space * style: remove extra space Co-authored-by: nsprenkle <nsprenkle@2u.com> Co-authored-by: Nathan Sprenkle <nsprenkle@users.noreply.github.com>
14 lines
361 B
Python
14 lines
361 B
Python
"""Learner home URL routing configuration"""
|
|
|
|
from django.urls import path
|
|
|
|
from lms.djangoapps.learner_home import mock_views, views
|
|
|
|
app_name = "learner_home"
|
|
|
|
# Learner Dashboard Routing
|
|
urlpatterns = [
|
|
path("init", views.InitializeView.as_view(), name="initialize"),
|
|
path("mock/init", mock_views.InitializeView.as_view(), name="mock_initialize"),
|
|
]
|