diff --git a/lms/models/application_instance.py b/lms/models/application_instance.py index 9bec6e63e3..4ea8157315 100644 --- a/lms/models/application_instance.py +++ b/lms/models/application_instance.py @@ -57,7 +57,7 @@ class ApplicationSettings(JSONSettings): JSONSetting("hypothesis", "lti_13_sourcedid_for_grading", asbool), JSONSetting("hypothesis", "auto_grading_enabled", asbool), JSONSetting("hypothesis", "auto_grading_sync_enabled", asbool), - JSONSetting("hypothesis", "dashboard_rosters", asbool), + JSONSetting("dashboard", "rosters", asbool), JSONSetting("dashboard", "assignment_segments_filter_enabled", asbool), ) diff --git a/lms/services/dashboard.py b/lms/services/dashboard.py index 60aefad1e4..a206937d71 100644 --- a/lms/services/dashboard.py +++ b/lms/services/dashboard.py @@ -182,7 +182,7 @@ def get_assignment_roster( rosters_enabled = ( assignment.course and assignment.course.application_instance.settings.get( - "hypothesis", "dashboard_rosters" + "dashboard", "rosters" ) ) if rosters_enabled and self._roster_service.assignment_roster_exists( diff --git a/lms/templates/admin/application_instance/show.html.jinja2 b/lms/templates/admin/application_instance/show.html.jinja2 index dca501735e..de7962532f 100644 --- a/lms/templates/admin/application_instance/show.html.jinja2 +++ b/lms/templates/admin/application_instance/show.html.jinja2 @@ -120,7 +120,7 @@