Files
edx-platform/common/test/db_fixtures/waffle_flags.json
Régis Behmo 13a70fcaa6 Deprecate COURSE_OUTLINE_PAGE_FLAG and UNIFIED_COURSE_TAB_FLAG
These flags are deprecated in favor or the DISABLE_* equivalent.
This allows us to get rid of the DefaultTrueWaffleNamespace class.
2020-10-27 10:20:41 +01:00

60 lines
1.2 KiB
JSON

[
{
"pk": 1,
"model": "waffle.flag",
"fields": {
"name": "course_experience.disable_course_outline_page",
"everyone": true
}
},
{
"pk": 2,
"model": "waffle.flag",
"fields": {
"name": "course_experience.enable_course_goals",
"everyone": true
}
},
{
"pk": 1,
"model": "waffle.switch",
"fields": {
"name": "studio.enable_policy_page",
"active": true
}
},
{
"pk": 2,
"model": "waffle.switch",
"fields": {
"name": "completion.enable_completion_tracking",
"active": true
}
},
{
"pk": 3,
"model": "waffle.flag",
"fields": {
"name": "course_experience.gdpr",
"everyone": false
}
},
{
"pk": 4,
"model": "waffle.switch",
"fields": {
"name": "studio.enable_checklists_page",
"active": true
}
},
{
"pk": 5,
"model": "waffle.flag",
"fields": {
"name": "studio.enable_checklists_quality",
"staff": true,
"superusers": true
}
}
]