Files
edx-platform/lms/djangoapps/learner_home/rest_api/urls.py
Deborah Kaplan 3136134be8 chore: move the program dashboard APIs (#36420)
Moves the Program Dashboard APIs out of the deprecated remnants of the legacy learner dashboard, into the Programs djangoapp.

Keeps the old legacy routes for this API, left over from the deprecated remnants of the legacy learner dashboard, alongside future-proofed routes which will work when the deprecated, legacy Program Dashboard is eventually replaced with functionality in the Learner Dashboard MFE.

FIXES: APER-3949
2025-03-24 12:06:52 -04:00

12 lines
238 B
Python

"""
Programs API URLs.
"""
from django.urls import include, path
from openedx.core.djangoapps.programs.rest_api.v1 import urls as v1_programs_rest_api_urls
urlpatterns = [
path("v1/", include((v1_programs_rest_api_urls, "v1"))),
]