Allows staff users to manually enqueue the task responsible for awarding programs certificates. ECOM-3692.
10 lines
231 B
Python
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
|