From 9df2c4462f56b2f5ab5512b509927c12c9a7dd25 Mon Sep 17 00:00:00 2001 From: stvn Date: Tue, 2 Feb 2021 14:01:56 -0800 Subject: [PATCH] fix: Add DiscussionsConfiguration.enabled to admin page Without this, we can't edit it via the default view. --- openedx/core/djangoapps/discussions/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openedx/core/djangoapps/discussions/models.py b/openedx/core/djangoapps/discussions/models.py index 62a9422bd3..dfb7e524e9 100644 --- a/openedx/core/djangoapps/discussions/models.py +++ b/openedx/core/djangoapps/discussions/models.py @@ -81,6 +81,7 @@ class ProviderFilter(StackedConfigurationModel): ) STACKABLE_FIELDS = ( + 'enabled', 'allow', 'deny', )