From 1ac16660a09832a8217afe36a8be525c7c117ddd Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Thu, 6 Feb 2020 12:46:42 -0500 Subject: [PATCH] Add course_date_signals to INSTALLED_APPS --- cms/envs/common.py | 3 +++ lms/envs/common.py | 3 +++ 2 files changed, 6 insertions(+) diff --git a/cms/envs/common.py b/cms/envs/common.py index 85a7699aae..01e3f891fb 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -1417,6 +1417,9 @@ INSTALLED_APPS = [ # so sample_task is available to celery workers 'openedx.core.djangoapps.heartbeat', + + # signal handlers to capture course dates into edx-when + 'openedx.core.djangoapps.course_date_signals', ] diff --git a/lms/envs/common.py b/lms/envs/common.py index f1ff80827c..3996f7cb1b 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -2490,6 +2490,9 @@ INSTALLED_APPS = [ # so sample_task is available to celery workers 'openedx.core.djangoapps.heartbeat', + + # signal handlers to capture course dates into edx-when + 'openedx.core.djangoapps.course_date_signals', ] ######################### CSRF #########################################