mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-09 03:10:11 +00:00
ui: storage content: add encryption and verification columns for PBS
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
770d614ff0
commit
a4b871296f
@ -117,6 +117,21 @@ Ext.define('PVE.storage.BackupView', {
|
|||||||
pruneButton,
|
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();
|
me.callParent();
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user