Show cohorts on the new instructor dashboard

TNL-161

Remove placeholder text
This commit is contained in:
Andy Armstrong
2014-09-04 09:39:34 -04:00
committed by cahrens
parent 6d5cd5d0b8
commit 9e366fe202
12 changed files with 230 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
(function(Backbone) {
var CohortModel = Backbone.Model.extend({
idAttribute: 'id',
defaults: {
name: '',
user_count: 0
}
});
this.CohortModel = CohortModel;
}).call(this, Backbone);