nginx-proxy-manager/src/frontend/js/models/certificate.js

41 lines
1.0 KiB
JavaScript
Raw Normal View History

'use strict';
const Backbone = require('backbone');
const model = Backbone.Model.extend({
idAttribute: 'id',
defaults: function () {
return {
2018-08-07 06:27:20 -04:00
id: 0,
created_on: null,
modified_on: null,
provider: '',
nice_name: '',
domain_names: [],
expires_on: null,
meta: {},
// The following are expansions:
2018-08-07 06:27:20 -04:00
owner: null,
proxy_hosts: [],
redirection_hosts: [],
dead_hosts: []
};
2018-08-07 06:27:20 -04:00
},
/**
* @returns {Boolean}
*/
hasSslFiles: function () {
let meta = this.get('meta');
return typeof meta['certificate'] !== 'undefined' && meta['certificate'] && typeof meta['certificate_key'] !== 'undefined' && meta['certificate_key'];
}
});
module.exports = {
Model: model,
Collection: Backbone.Collection.extend({
model: model
})
};