From 25dae57226447cfb9efbebca30945ab50e37a653 Mon Sep 17 00:00:00 2001 From: Chris Dodge Date: Wed, 29 May 2013 11:16:33 -0400 Subject: [PATCH] add the new category which can act as a category --- common/lib/xmodule/xmodule/modulestore/mongo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lib/xmodule/xmodule/modulestore/mongo.py b/common/lib/xmodule/xmodule/modulestore/mongo.py index 24df17b15b..be01328733 100644 --- a/common/lib/xmodule/xmodule/modulestore/mongo.py +++ b/common/lib/xmodule/xmodule/modulestore/mongo.py @@ -268,7 +268,7 @@ class MongoModuleStore(ModuleStoreBase): query = {'_id.org': location.org, '_id.course': location.course, '_id.category': {'$in': ['course', 'chapter', 'sequential', 'vertical', - 'wrapper', 'problemset', 'conditional']} + 'wrapper', 'problemset', 'conditional', 'randomize']} } # we just want the Location, children, and inheritable metadata record_filter = {'_id': 1, 'definition.children': 1}