Files
edx-platform/lms/djangoapps/discussion/config/__init__.py
Stu Young 0abce9c18b incr-305 (#20621)
* run python modernize
* run isort
2019-05-15 22:07:05 -04:00

14 lines
425 B
Python

"""
Discussion settings and flags.
"""
from __future__ import absolute_import
from openedx.core.djangoapps.waffle_utils import WaffleFlag, WaffleFlagNamespace
# Namespace for course experience waffle flags.
WAFFLE_FLAG_NAMESPACE = WaffleFlagNamespace(name='edx_discussions')
# Waffle flag to enable the use of Bootstrap
USE_BOOTSTRAP_FLAG = WaffleFlag(WAFFLE_FLAG_NAMESPACE, 'use_bootstrap', flag_undefined_default=True)