Merge branch 'v2' of github.com:jc21/nginx-proxy-manager

This commit is contained in:
Jamie Curnow
2018-08-30 14:32:46 +10:00
378 changed files with 18583 additions and 7537 deletions
-22
View File
@@ -1,22 +0,0 @@
'use strict';
const Backbone = require('backbone');
const model = Backbone.Model.extend({
idAttribute: '_id',
defaults: function () {
return {
name: '',
items: [],
hosts: []
};
}
});
module.exports = {
Model: model,
Collection: Backbone.Collection.extend({
model: model
})
};