From e8163c91619c697c8682048b58a89945b59bbbcb Mon Sep 17 00:00:00 2001 From: stvn Date: Wed, 7 Apr 2021 10:32:04 -0700 Subject: [PATCH] fix: Use the correct name for serializer to_internal_value Fortunately, this wasn't being used yet. --- openedx/core/djangoapps/discussions/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/core/djangoapps/discussions/views.py b/openedx/core/djangoapps/discussions/views.py index 9949661464..9fd9b3a4e6 100644 --- a/openedx/core/djangoapps/discussions/views.py +++ b/openedx/core/djangoapps/discussions/views.py @@ -44,7 +44,7 @@ class DiscussionsConfigurationView(APIView): """ raise NotImplementedError - def to_internal_data(self, data): + def to_internal_value(self, data): """ Transform the *incoming* primitive data into a native value. """