Files
edx-platform/lms/djangoapps/bulk_email/api.py
2019-05-21 09:22:08 -04:00

12 lines
284 B
Python

# pylint: disable=unused-import
"""
Python APIs exposed by the bulk_email app to other in-process apps.
"""
# Public Bulk Email Functions
from bulk_email.models_api import (
is_bulk_email_enabled_for_course,
is_bulk_email_feature_enabled,
is_user_opted_out_for_course,
)