Files
edx-platform/lms/static/js/models/cohort.js
Andy Armstrong 9e366fe202 Show cohorts on the new instructor dashboard
TNL-161

Remove placeholder text
2014-10-01 09:22:29 -04:00

12 lines
243 B
JavaScript

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