diff --git a/cms/djangoapps/contentstore/views/course.py b/cms/djangoapps/contentstore/views/course.py index 244804c3062b..27b337409b85 100644 --- a/cms/djangoapps/contentstore/views/course.py +++ b/cms/djangoapps/contentstore/views/course.py @@ -22,6 +22,7 @@ from django.utils.translation import gettext as _ from django.views.decorators.csrf import ensure_csrf_cookie from django.views.decorators.http import require_GET, require_http_methods +from edly_features_app.filters import OrganizationsRequested from edx_django_utils.monitoring import function_trace from edx_toggles.toggles import WaffleSwitch from opaque_keys import InvalidKeyError @@ -1822,4 +1823,5 @@ def get_organizations(user): else: organizations = course_creator.organizations.all().values_list('short_name', flat=True) + organizations = OrganizationsRequested.run_filter(organizations=organizations) return organizations