mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-13 12:11:04 +00:00
17 lines
309 B
JavaScript
17 lines
309 B
JavaScript
Ext.define('PVE.form.FirewallPolicySelector', {
|
|
extend: 'PVE.form.KVComboBox',
|
|
alias: ['widget.pveFirewallPolicySelector'],
|
|
|
|
initComponent: function() {
|
|
var me = this;
|
|
|
|
me.data = [
|
|
['ACCEPT', 'ACCEPT'],
|
|
['REJECT', 'REJECT'],
|
|
[ 'DROP', 'DROP']
|
|
];
|
|
|
|
me.callParent();
|
|
}
|
|
});
|