15 lines
307 B
Python
15 lines
307 B
Python
"""
|
|
URLs for the Studio API [Course Run]
|
|
"""
|
|
|
|
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
from .views.course_runs import CourseRunViewSet
|
|
|
|
app_name = 'cms.djangoapps.api.v1'
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'course_runs', CourseRunViewSet, base_name='course_run')
|
|
urlpatterns = router.urls
|