* fix: multi lines and spaces issues * fix: eslint operator-linebreak issue * fix: eslint quotes issue * fix: remaining quotes issues * fix: eslint object curly newline issue * fix: eslint object curly spacing issue * fix: eslint brace-style issues * fix: react jsx indent and props issues * fix: eslint trailing spaces issues * fix: eslint linbreak style issue * fix: eslint space unary operator issue * fix: eslint line around directives issue * fix: void and typeof space unary ops issue
14 lines
445 B
JavaScript
14 lines
445 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: {
|
|
updates: null, // UpdateCollection
|
|
handouts: null // HandoutCollection
|
|
}
|
|
});
|
|
return CourseInfo;
|
|
});
|