nginx-proxy-manager/frontend/js/models/audit-log.js

19 lines
307 B
JavaScript
Raw Normal View History

const Backbone = require('backbone');
const model = Backbone.Model.extend({
idAttribute: 'id',
defaults: function () {
return {
name: ''
};
}
});
module.exports = {
Model: model,
Collection: Backbone.Collection.extend({
model: model
})
};