Files
edx-platform/cms/static/js/models/module_info.js
Don Mitchell 99e7daf796 RESTful refactoring for course_info updates and handouts.
html page and update access use 2 different urls
GET update can get an individual update
STUD-944
2013-11-13 13:16:41 -05:00

14 lines
270 B
JavaScript

define(["backbone"], function(Backbone) {
var ModuleInfo = Backbone.Model.extend({
urlRoot: "/xblock",
defaults: {
"id": null,
"data": null,
"metadata" : null,
"children" : null
}
});
return ModuleInfo;
});