Commit e3810b75 by chrisndodge

Merge pull request #799 from edx/fix/ichuang/inheritance-needs-videosequence

FIX: videosequence was not inheriting metadata, eg start date
parents 42571b93 83f8b033
......@@ -315,7 +315,7 @@ class MongoModuleStore(ModuleStoreBase):
# note this is a bit ugly as when we add new categories of containers, we have to add it here
query = {'_id.org': location.org,
'_id.course': location.course,
'_id.category': {'$in': ['course', 'chapter', 'sequential', 'vertical',
'_id.category': {'$in': ['course', 'chapter', 'sequential', 'vertical', 'videosequence',
'wrapper', 'problemset', 'conditional', 'randomize']}
}
# we just want the Location, children, and inheritable metadata
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment