Allows support staff or global staff to view a list of a learner's enrollments, and change enrollment modes. We generate a ManualEnrollmentAudit record for these enrollment changes in order to track updates. Additionally, enrollment changes are handled through the enrollment API, which handles bookkeeping such as granting refunds where appropriate. ECOM-2825
9 lines
180 B
Python
9 lines
180 B
Python
"""
|
|
Aggregate all views for the support app.
|
|
"""
|
|
# pylint: disable=wildcard-import
|
|
from .index import *
|
|
from .certificate import *
|
|
from .enrollments import *
|
|
from .refund import *
|