- Remove usage of django.urls.patterns - Change urls tuples to lists - Make all string view names callables - This is the second of several urls updates for LMS; a work in progress
11 lines
248 B
Python
11 lines
248 B
Python
"""
|
|
Course Structure API URI specification.
|
|
|
|
Patterns here should simply point to version-specific patterns.
|
|
"""
|
|
from django.conf.urls import include, url
|
|
|
|
urlpatterns = [
|
|
url(r'^v0/', include('course_structure_api.v0.urls', namespace='v0'))
|
|
]
|