Files
edx-platform/cms/static/js/models/course_info.js
2013-10-04 13:43:50 -04:00

17 lines
542 B
JavaScript

define(["backbone"], function(Backbone) {
// single per course holds the updates and handouts
var CourseInfo = Backbone.Model.extend({
// This model class is not suited for restful operations and is considered just a server side initialized container
url: '',
defaults: {
"courseId": "", // the location url
"updates" : null, // UpdateCollection
"handouts": null // HandoutCollection
},
idAttribute : "courseId"
});
return CourseInfo;
});