Add an empty get_errored_courses function for the mongo modulestore

This commit is contained in:
Calen Pennington
2012-09-17 14:19:23 -04:00
parent d17e2aada9
commit c0ed793976

View File

@@ -316,3 +316,9 @@ class MongoModuleStore(ModuleStoreBase):
{'_id': True})
return [i['_id'] for i in items]
def get_errored_courses(self):
"""
This function doesn't make sense for the mongo modulestore, as courses
are loaded on demand, rather than up front
"""
return {}