25 lines
541 B
JavaScript
Raw Normal View History

2018-07-24 16:56:39 +10:00
const Backbone = require('backbone');
const model = Backbone.Model.extend({
idAttribute: 'id',
defaults: function () {
return {
id: undefined,
2018-07-24 16:56:39 +10:00
created_on: null,
modified_on: null,
name: '',
2018-08-18 17:16:23 +10:00
items: [],
2018-07-24 16:56:39 +10:00
// The following are expansions:
owner: null
};
}
});
module.exports = {
Model: model,
Collection: Backbone.Collection.extend({
model: model
})
};