Commit f5d08b2e by Awais Qureshi

Merge pull request #8085 from edx/awais786/ECOM-1590-new-field-minimum-grade-studio

ECOM-1590 adding new field in advance_settings.
parents 292ad42c 3da312b2
...@@ -856,6 +856,16 @@ class CourseFields(object): ...@@ -856,6 +856,16 @@ class CourseFields(object):
scope=Scope.settings scope=Scope.settings
) )
minimum_grade_credit = Float(
display_name=_("Minimum Grade for Credit"),
help=_(
"The minimum grade that a learner must earn to receive credit in the course, "
"as a decimal between 0.0 and 1.0. For example, for 75%, enter 0.75."
),
default=0.8,
scope=Scope.settings,
)
class CourseModule(CourseFields, SequenceModule): # pylint: disable=abstract-method class CourseModule(CourseFields, SequenceModule): # pylint: disable=abstract-method
""" """
......
...@@ -199,4 +199,5 @@ class AdvancedSettingsPage(CoursePage): ...@@ -199,4 +199,5 @@ class AdvancedSettingsPage(CoursePage):
'annotation_storage_url', 'annotation_storage_url',
'social_sharing_url', 'social_sharing_url',
'teams_configuration', 'teams_configuration',
'minimum_grade_credit',
] ]
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