django-not-configured is an error raised by pylint (with the pylint-django plugin) when it's not correctly configured. We should not be applying lint amnesty for such a violation.
20 lines
826 B
Python
20 lines
826 B
Python
"""
|
|
Feature toggles used across the platform. Toggles should only be added to this module if we don't have a better place
|
|
for them. Generally speaking, they should be added to the most appropriate app or repo.
|
|
"""
|
|
from edx_toggles.toggles import SettingDictToggle
|
|
|
|
# .. toggle_name: FEATURES['ENTRANCE_EXAMS']
|
|
# .. toggle_implementation: SettingDictToggle
|
|
# .. toggle_default: False
|
|
# .. toggle_description: Enable entrance exams feature. When enabled, students see an exam xblock as the first unit
|
|
# of the course.
|
|
# .. toggle_use_cases: open_edx
|
|
# .. toggle_creation_date: 2015-12-01
|
|
# .. toggle_target_removal_date: None
|
|
# .. toggle_warnings: None
|
|
# .. toggle_tickets: https://openedx.atlassian.net/browse/SOL-40
|
|
ENTRANCE_EXAMS = SettingDictToggle(
|
|
"FEATURES", "ENTRANCE_EXAMS", default=False, module_name=__name__
|
|
)
|