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
12 lines
238 B
Python
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"))),
|
|
]
|