mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-05-01 11:32:28 +00:00
Closes #1114 Related To #1882 Related To #3537 Related To #3618 Co-authored-by: jwklijnsma <janwiebe@janwiebe.eu> Co-authored-by: SBado <16034687+SBado@users.noreply.github.com>
32 lines
805 B
JavaScript
32 lines
805 B
JavaScript
const Backbone = require('backbone');
|
|
|
|
const model = Backbone.Model.extend({
|
|
idAttribute: 'id',
|
|
|
|
defaults: function () {
|
|
return {
|
|
id: undefined,
|
|
created_on: null,
|
|
modified_on: null,
|
|
incoming_port: null,
|
|
forwarding_host: null,
|
|
forwarding_port: null,
|
|
tcp_forwarding: true,
|
|
udp_forwarding: false,
|
|
proxy_protocol_enabled: false,
|
|
loadbalancer_address: "",
|
|
enabled: true,
|
|
meta: {},
|
|
// The following are expansions:
|
|
owner: null
|
|
};
|
|
}
|
|
});
|
|
|
|
module.exports = {
|
|
Model: model,
|
|
Collection: Backbone.Collection.extend({
|
|
model: model
|
|
})
|
|
};
|