ui: storage content: add encryption and verification columns for PBS

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2020-11-24 23:36:02 +01:00
parent 770d614ff0
commit a4b871296f

View File

@ -117,6 +117,21 @@ Ext.define('PVE.storage.BackupView', {
pruneButton,
];
if (me.pluginType === 'pbs') {
me.extraColumns = {
encrypted: {
header: gettext('Encrypted'),
dataIndex: 'encrypted',
renderer: PVE.Utils.render_backup_encryption,
},
verification: {
header: gettext('Verify State'),
dataIndex: 'verification',
renderer: PVE.Utils.render_backup_verification,
}
};
}
me.callParent();
},
});