Commit e07f45b5 by Usman Khalid

Removed cohort_config from advanced settings page.

TNL-1258
parent eee6250f
...@@ -18,6 +18,7 @@ class CourseMetadata(object): ...@@ -18,6 +18,7 @@ class CourseMetadata(object):
# Should not be used directly. Instead the filtered_list method should # Should not be used directly. Instead the filtered_list method should
# be used if the field needs to be filtered depending on the feature flag. # be used if the field needs to be filtered depending on the feature flag.
FILTERED_LIST = [ FILTERED_LIST = [
'cohort_config',
'xml_attributes', 'xml_attributes',
'start', 'start',
'end', 'end',
......
...@@ -154,7 +154,6 @@ class AdvancedSettingsPage(CoursePage): ...@@ -154,7 +154,6 @@ class AdvancedSettingsPage(CoursePage):
'cert_name_long', 'cert_name_long',
'cert_name_short', 'cert_name_short',
'certificates_display_behavior', 'certificates_display_behavior',
'cohort_config',
'course_image', 'course_image',
'cosmetic_display_price', 'cosmetic_display_price',
'advertised_start', 'advertised_start',
......
...@@ -405,7 +405,7 @@ def add_courseware_context(content_list, course, user, id_map=None): ...@@ -405,7 +405,7 @@ def add_courseware_context(content_list, course, user, id_map=None):
content.update({"courseware_url": url, "courseware_title": title}) content.update({"courseware_url": url, "courseware_title": title})
def prepare_content(content, course_key, is_staff=False, **kwargs): def prepare_content(content, course_key, is_staff=False, course_is_cohorted=None):
""" """
This function is used to pre-process thread and comment models in various This function is used to pre-process thread and comment models in various
ways before adding them to the HTTP response. This includes fixing empty ways before adding them to the HTTP response. This includes fixing empty
...@@ -459,7 +459,6 @@ def prepare_content(content, course_key, is_staff=False, **kwargs): ...@@ -459,7 +459,6 @@ def prepare_content(content, course_key, is_staff=False, **kwargs):
else: else:
del endorsement["user_id"] del endorsement["user_id"]
course_is_cohorted = kwargs.get('course_is_cohorted')
if course_is_cohorted is None: if course_is_cohorted is None:
course_is_cohorted = is_course_cohorted(course_key) course_is_cohorted = is_course_cohorted(course_key)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment