Certificates into their own section

This commit is contained in:
Jamie Curnow
2018-08-07 20:27:20 +10:00
parent 1c57ccdc87
commit c749a22b52
41 changed files with 599 additions and 385 deletions

View File

@ -7,16 +7,16 @@ const model = Backbone.Model.extend({
defaults: function () {
return {
id: 0,
created_on: null,
modified_on: null,
domain_names: [],
ssl_enabled: false,
ssl_provider: false,
ssl_forced: false,
meta: {},
id: 0,
created_on: null,
modified_on: null,
domain_names: [],
certificate_id: 0,
ssl_forced: false,
meta: {},
// The following are expansions:
owner: null
owner: null,
certificate: null
};
}
});