From 59f72b554f0ddd0b7577d4c0ed71b64fa1fe8141 Mon Sep 17 00:00:00 2001 From: Greg Price Date: Thu, 4 Jun 2015 10:58:06 -0400 Subject: [PATCH] Enable VAL URLs even when mobile API is disabled JIRA: MA-799 --- lms/urls.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lms/urls.py b/lms/urls.py index 37e4246cbd..396524e32a 100644 --- a/lms/urls.py +++ b/lms/urls.py @@ -92,6 +92,10 @@ urlpatterns = ( # Profile Images API endpoints url(r'^api/profile_images/', include('openedx.core.djangoapps.profile_images.urls')), + + # Video Abstraction Layer used to allow video teams to manage video assets + # independently of courseware. https://github.com/edx/edx-val + url(r'^api/val/v0/', include('edxval.urls')), ) if settings.FEATURES["ENABLE_COMBINED_LOGIN_REGISTRATION"]: @@ -115,9 +119,6 @@ else: if settings.FEATURES["ENABLE_MOBILE_REST_API"]: urlpatterns += ( url(r'^api/mobile/v0.5/', include('mobile_api.urls')), - # Video Abstraction Layer used to allow video teams to manage video assets - # independently of courseware. https://github.com/edx/edx-val - url(r'^api/val/v0/', include('edxval.urls')), ) # if settings.FEATURES.get("MULTIPLE_ENROLLMENT_ROLES"):