/
githubmirror
/
edx-platform
Обзор
Документация
Войти
/
githubmirror
/
edx-platform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
release-ulmo
openedx/core/toggles.py
17 строк
761 B
Robert Raposa
docs: update toggle docs
02 апр 2021, 04:58
02 апр 2021, 04:58
8ef8b35
Код
Авторство
О чём код?
""" 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_tickets: https://openedx.atlassian.net/browse/SOL-40 ENTRANCE_EXAMS = SettingDictToggle( "FEATURES", "ENTRANCE_EXAMS", default=False, module_name=__name__ )