Support Team receive much requests from the users to disable their accounts on edX.To fullfill their requests, Support has to contact DevOps.To avoid it, a new feature is added which can easily disable the user account. LEARNER-3529
10 lines
207 B
Python
10 lines
207 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 *
|
|
from .manage_user import *
|