Files
edx-platform/lms/djangoapps/support/views/__init__.py
Renzo Lucioni 619420bb80 Add API endpoint for issuing programs certificates
Allows staff users to manually enqueue the task responsible for awarding programs certificates. ECOM-3692.
2016-02-17 13:52:27 -05:00

10 lines
231 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 .programs import IssueProgramCertificatesView