urls.py 349 Bytes
Newer Older
1 2 3
"""
URL patterns for Javascript files used to load all of the XModule JS in one wad.
"""
4 5
from django.conf.urls import url
from pipeline_js.views import xmodule_js_files, requirejs_xmodule
6

7 8 9 10
urlpatterns = [
    url(r'^files\.json$', xmodule_js_files, name='xmodule_js_files'),
    url(r'^xmodule\.js$', requirejs_xmodule, name='requirejs_xmodule'),
]