1
0
mirror of https://github.com/NginxProxyManager/nginx-proxy-manager.git synced 2025-08-31 01:01:09 +03:00
This commit is contained in:
Jamie Curnow
2018-07-18 08:35:49 +10:00
parent c5450eaa1a
commit c629deb56c
34 changed files with 710 additions and 295 deletions

View File

@@ -9,8 +9,7 @@ const model = Backbone.Model.extend({
return {
created_on: null,
modified_on: null,
owner: null,
domain_name: '',
domain_names: [],
forward_ip: '',
forward_port: null,
access_list_id: null,
@@ -19,7 +18,10 @@ const model = Backbone.Model.extend({
ssl_forced: false,
caching_enabled: false,
block_exploits: false,
meta: []
meta: [],
// The following are expansions:
owner: null,
access_list: null
};
}
});