From 2fc7d3308c212e19e5e915924c60e504a3527133 Mon Sep 17 00:00:00 2001 From: Don Mitchell Date: Mon, 24 Jun 2013 16:42:54 -0400 Subject: [PATCH] Customtags can't be inserted by studio --- cms/djangoapps/contentstore/views/component.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cms/djangoapps/contentstore/views/component.py b/cms/djangoapps/contentstore/views/component.py index 007467f8a6..4377943b36 100644 --- a/cms/djangoapps/contentstore/views/component.py +++ b/cms/djangoapps/contentstore/views/component.py @@ -38,7 +38,8 @@ __all__ = ['OPEN_ENDED_COMPONENT_TYPES', log = logging.getLogger(__name__) -COMPONENT_TYPES = ['customtag', 'discussion', 'html', 'problem', 'video'] +# NOTE: edit_unit assumes this list is disjoint from ADVANCED_COMPONENT_TYPES +COMPONENT_TYPES = ['discussion', 'html', 'problem', 'video'] OPEN_ENDED_COMPONENT_TYPES = ["combinedopenended", "peergrading"] NOTE_COMPONENT_TYPES = ['notes']