mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-05-02 08:17:34 +00:00

The PBSConfig panel enables creation/editing/deletion of PBS instances. Each instance can lists its snapshots and each snapshot can be restored Inspired by the LDAPConfig panel and PBSEdit from pve-manager. Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
24 lines
436 B
JavaScript
24 lines
436 B
JavaScript
Ext.define('PMG.BackupConfiguration', {
|
|
extend: 'Ext.tab.Panel',
|
|
alias: 'widget.pmgBackupConfiguration',
|
|
|
|
title: gettext('Backup'),
|
|
|
|
border: false,
|
|
defaults: { border: false },
|
|
|
|
items: [
|
|
{
|
|
itemId: 'local',
|
|
title: gettext('Local Backup/Restore'),
|
|
xtype: 'pmgBackupRestore',
|
|
},
|
|
{
|
|
itemId: 'proxmoxbackupserver',
|
|
title: 'Proxmox Backup Server',
|
|
xtype: 'pmgPBSConfig',
|
|
},
|
|
],
|
|
});
|
|
|