From 4fdd15a2a2ae0f2922f4aa67728d5675ee9a1425 Mon Sep 17 00:00:00 2001 From: Matthew Piatetsky Date: Wed, 14 Feb 2018 09:29:51 -0500 Subject: [PATCH] make unified_course_tab on by default --- openedx/features/course_experience/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/features/course_experience/__init__.py b/openedx/features/course_experience/__init__.py index a2dff74d45..c5dd98b9ed 100644 --- a/openedx/features/course_experience/__init__.py +++ b/openedx/features/course_experience/__init__.py @@ -14,7 +14,7 @@ WAFFLE_FLAG_NAMESPACE = WaffleFlagNamespace(name='course_experience') COURSE_OUTLINE_PAGE_FLAG = CourseWaffleFlag(WAFFLE_FLAG_NAMESPACE, 'course_outline_page', flag_undefined_default=True) # Waffle flag to enable a single unified "Course" tab. -UNIFIED_COURSE_TAB_FLAG = CourseWaffleFlag(WAFFLE_FLAG_NAMESPACE, 'unified_course_tab') +UNIFIED_COURSE_TAB_FLAG = CourseWaffleFlag(WAFFLE_FLAG_NAMESPACE, 'unified_course_tab', flag_undefined_default=True) # Waffle flag to enable the sock on the footer of the home and courseware pages. DISPLAY_COURSE_SOCK_FLAG = CourseWaffleFlag(WAFFLE_FLAG_NAMESPACE, 'display_course_sock')