nginx-proxy-manager/src/frontend/js/models/dead-host.js

32 lines
728 B
JavaScript
Raw Normal View History

2018-07-08 21:22:10 -04:00
'use strict';
const Backbone = require('backbone');
const model = Backbone.Model.extend({
idAttribute: 'id',
defaults: function () {
return {
id: undefined,
created_on: null,
modified_on: null,
domain_names: [],
certificate_id: 0,
ssl_forced: false,
2018-11-20 17:04:31 -05:00
http2_support: false,
meta: {},
advanced_config: '',
2018-07-25 18:23:32 -04:00
// The following are expansions:
owner: null,
certificate: null
2018-07-08 21:22:10 -04:00
};
}
});
module.exports = {
Model: model,
Collection: Backbone.Collection.extend({
model: model
})
};