mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-05 16:36:58 +00:00
10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
Ext.define('PVE.form.FirewallPolicySelector', {
|
|
extend: 'Proxmox.form.KVComboBox',
|
|
alias: ['widget.pveFirewallPolicySelector'],
|
|
comboItems: [
|
|
['ACCEPT', 'ACCEPT'],
|
|
['REJECT', 'REJECT'],
|
|
['DROP', 'DROP'],
|
|
],
|
|
});
|