]> git.proxmox.com Git - pmg-gui.git/blob - js/BackupConfiguration.js
quarantine: use new controller for virus and attachment quarantines
[pmg-gui.git] / js / BackupConfiguration.js
1 Ext.define('PMG.BackupConfiguration', {
2 extend: 'Ext.tab.Panel',
3 alias: 'widget.pmgBackupConfiguration',
4
5 title: gettext('Backup'),
6
7 border: false,
8 defaults: { border: false },
9
10 items: [
11 {
12 itemId: 'local',
13 title: gettext('Local Backup/Restore'),
14 xtype: 'pmgBackupRestore',
15 },
16 {
17 itemId: 'proxmoxbackupserver',
18 title: 'Proxmox Backup Server',
19 xtype: 'pmgPBSConfig',
20 },
21 ],
22 });
23