[MICROBA-1510] * update InstructorTaskSchedule model delete behavior from CASCADE to DO_NOTHING. * add utility function supporting cancellation of scheduled tasks to the instructor_task app * add utility function to determine if a user has staff or instructor level access to a course to the student app * adds a REST API for supporting retrieval and cancellation of scheduled bulk email tasks * add unit tests for new functionality in the student app * add unit tests for the new functionality in the bulk_email app * remove use of CourseEmail object directly in another related test file * add unit tests for the new REST API views.
15 lines
292 B
Python
15 lines
292 B
Python
"""
|
|
Instructor Task Django app root REST API URLs.
|
|
"""
|
|
from django.conf.urls import include
|
|
from django.urls import path
|
|
|
|
from lms.djangoapps.instructor_task.rest_api.v1 import urls as v1_urls
|
|
|
|
|
|
app_name = "lms.djangoapps.instructor_task"
|
|
|
|
urlpatterns = [
|
|
path("v1/", include(v1_urls))
|
|
]
|