Files
edx-platform/lms/djangoapps/bulk_enroll/urls.py
bmedx 11a4030767 LMS urls cleanup for Django 1.11
- 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
2017-11-06 16:06:00 -05:00

11 lines
211 B
Python

"""
URLs for the Bulk Enrollment API
"""
from django.conf.urls import url
from bulk_enroll.views import BulkEnrollView
urlpatterns = [
url(r'^bulk_enroll', BulkEnrollView.as_view(), name='bulk_enroll'),
]