mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-12 09:45:00 +00:00

It's now possible to make VZDump only send a mail in case of a failure. Signed-off-by: Tobias Doerffel <tobias.doerffel@ed-chemnitz.de>
16 lines
357 B
JavaScript
16 lines
357 B
JavaScript
Ext.define('PVE.form.EmailNotificationSelector', {
|
|
extend: 'PVE.form.KVComboBox',
|
|
alias: ['widget.pveEmailNotificationSelector'],
|
|
|
|
initComponent: function() {
|
|
var me = this;
|
|
|
|
me.data = [
|
|
['always', gettext('Always')],
|
|
['failure', gettext('On failure only')]
|
|
];
|
|
|
|
me.callParent();
|
|
}
|
|
});
|