audit-log.js 307 B

123456789101112131415161718
  1. const Backbone = require('backbone');
  2. const model = Backbone.Model.extend({
  3. idAttribute: 'id',
  4. defaults: function () {
  5. return {
  6. name: ''
  7. };
  8. }
  9. });
  10. module.exports = {
  11. Model: model,
  12. Collection: Backbone.Collection.extend({
  13. model: model
  14. })
  15. };