2018-07-08 21:22:10 -04:00
|
|
|
const Backbone = require('backbone');
|
|
|
|
|
|
|
|
const model = Backbone.Model.extend({
|
|
|
|
idAttribute: 'id',
|
|
|
|
|
|
|
|
defaults: function () {
|
|
|
|
return {
|
2018-08-15 23:08:56 -04:00
|
|
|
id: undefined,
|
2018-07-08 21:22:10 -04:00
|
|
|
created_on: null,
|
|
|
|
modified_on: null,
|
2018-07-25 18:23:32 -04:00
|
|
|
incoming_port: null,
|
|
|
|
forward_ip: null,
|
|
|
|
forwarding_port: null,
|
2018-07-08 21:22:10 -04:00
|
|
|
tcp_forwarding: true,
|
|
|
|
udp_forwarding: false,
|
2019-01-03 06:04:11 -05:00
|
|
|
enabled: true,
|
2018-08-07 06:27:20 -04:00
|
|
|
meta: {},
|
|
|
|
// The following are expansions:
|
|
|
|
owner: null
|
2018-07-08 21:22:10 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
Model: model,
|
|
|
|
Collection: Backbone.Collection.extend({
|
|
|
|
model: model
|
|
|
|
})
|
|
|
|
};
|