pmg-gui/js/VersionInfo.js
Thomas Lamprecht c87d46fbe8 tree wide: eslint --fix
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2020-10-23 13:17:15 +02:00

34 lines
521 B
JavaScript

/*global Proxmox*/
Ext.define('PMG.view.main.VersionInfo', {
extend: 'Ext.Component',
xtype: 'versioninfo',
makeApiCall: true,
data: {
version: false,
},
tpl: [
'Mail Gateway',
'<tpl if="version">',
' {version}',
'</tpl>',
],
initComponent: function() {
var me = this;
me.callParent();
if (me.makeApiCall) {
Proxmox.Utils.API2Request({
url: '/version',
method: 'GET',
success: function(response) {
me.update(response.result.data);
},
});
}
},
});