Files
edx-platform/lms/djangoapps/support/views/__init__.py
uzairr 266c8fe737 Add Manage User Feature to Support Tool
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
2018-01-30 12:16:44 +05:00

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 *