feat: turn on schedule creation by default
This commit removes several waffle toggles that have been enabled on edx.org for years. It's time to remove the rollout gating for these features and enable them by default. This doesn't directly change any behavior. But it does create new database objects by default now and allows for enabling other schedule based features more easily. Specifically, the following toggles were affected. schedules.create_schedules_for_course - Waffle flag removed as always-enabled - We now always create a schedule when an enrollment is created schedules.send_updates_for_course - Waffle flag removed as always-enabled - Course update emails are sent as long as the ScheduleConfig allows it. - This is not a change in default behavior, because ScheduleConfig is off by default. dynamic_pacing.studio_course_update - Waffle switch removed as always-enabled - Course teams can now always edit course updates directly in Studio ScheduleConfig.create_schedules ScheduleConfig.hold_back_ratio - Model fields for rolling out the schedules feature - Schedules are now always created - This commit only removes references to these fields, they still exist in the database. A future commit will remove them entirely This commit also adds a new has_highlights field to CourseOverview. This is used to cache whether a course has highlights, used to decide which course update email behavior they get. Previously every enrollment had to dig into the modulestore to determine that.
Showing
- cms/djangoapps/contentstore/api/tests/test_quality.py 1 addition, 1 deletioncms/djangoapps/contentstore/api/tests/test_quality.py
- cms/djangoapps/contentstore/api/views/course_quality.py 1 addition, 2 deletionscms/djangoapps/contentstore/api/views/course_quality.py
- cms/djangoapps/contentstore/views/item.py 2 additions, 8 deletionscms/djangoapps/contentstore/views/item.py
- cms/djangoapps/contentstore/views/tests/test_item.py 3 additions, 9 deletionscms/djangoapps/contentstore/views/tests/test_item.py
- cms/static/js/spec/views/pages/course_outline_spec.js 1 addition, 17 deletionscms/static/js/spec/views/pages/course_outline_spec.js
- cms/templates/js/course-outline.underscore 1 addition, 1 deletioncms/templates/js/course-outline.underscore
- cms/templates/js/highlights-editor.underscore 0 additions, 6 deletionscms/templates/js/highlights-editor.underscore
- common/djangoapps/entitlements/rest_api/v1/tests/test_views.py 4 additions, 7 deletions...n/djangoapps/entitlements/rest_api/v1/tests/test_views.py
- common/djangoapps/student/tests/test_models.py 5 additions, 13 deletionscommon/djangoapps/student/tests/test_models.py
- common/djangoapps/student/tests/test_views.py 0 additions, 7 deletionscommon/djangoapps/student/tests/test_views.py
- common/djangoapps/student/tests/tests.py 1 addition, 1 deletioncommon/djangoapps/student/tests/tests.py
- lms/djangoapps/courseware/tests/test_course_tools.py 0 additions, 10 deletionslms/djangoapps/courseware/tests/test_course_tools.py
- lms/djangoapps/courseware/tests/test_date_summary.py 0 additions, 15 deletionslms/djangoapps/courseware/tests/test_date_summary.py
- lms/djangoapps/courseware/tests/test_views.py 1 addition, 1 deletionlms/djangoapps/courseware/tests/test_views.py
- lms/djangoapps/instructor/tests/test_api.py 7 additions, 15 deletionslms/djangoapps/instructor/tests/test_api.py
- lms/djangoapps/instructor/tests/test_tools.py 4 additions, 5 deletionslms/djangoapps/instructor/tests/test_tools.py
- lms/djangoapps/mobile_api/users/tests.py 0 additions, 5 deletionslms/djangoapps/mobile_api/users/tests.py
- openedx/core/djangoapps/content/course_overviews/migrations/0024_overview_adds_has_highlights.py 23 additions, 0 deletions...overviews/migrations/0024_overview_adds_has_highlights.py
- openedx/core/djangoapps/content/course_overviews/models.py 14 additions, 1 deletionopenedx/core/djangoapps/content/course_overviews/models.py
- openedx/core/djangoapps/schedules/admin.py 2 additions, 8 deletionsopenedx/core/djangoapps/schedules/admin.py
Loading
Please register or sign in to comment