From e7c85e26f23a491bae4e1753f5b7fef3cf8a4f4c Mon Sep 17 00:00:00 2001 From: javoconsultant Date: Fri, 11 Sep 2026 16:59:28 +0500 Subject: [PATCH] feat: add competency-based education (CBE) API endpoint --- cms/urls.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cms/urls.py b/cms/urls.py index c0f96f489bb8..1a7cae49b616 100644 --- a/cms/urls.py +++ b/cms/urls.py @@ -361,6 +361,11 @@ path('api/content_tagging/', include(('openedx.core.djangoapps.content_tagging.urls', 'content_tagging'))), ] +# openedx-core: competency-based education (CBE) +urlpatterns += [ + path('api/', include('openedx_learning.urls')), +] + # Authoring-api specific API docs (using drf-spectacular and openapi-v3). # This is separate from and in addition to the full studio swagger documentation already existing at /api-docs. # Custom settings are provided in SPECTACULAR_SETTINGS as environment variables