diff options
author | Dirk Brenken <dev@brenken.org> | 2023-07-16 07:37:44 +0200 |
---|---|---|
committer | Dirk Brenken <dev@brenken.org> | 2023-07-16 07:37:44 +0200 |
commit | 56bbacbeca5dcd7e71d4e2bd22c15f338f878506 (patch) | |
tree | 7847d4e1f07f542b9252015a929d0eaa686e309e /applications/luci-app-banip/htdocs/luci-static/resources | |
parent | 6c259f71d468fdbf215857b4be179bf6a3f455a9 (diff) |
luci-app-banip: sync with banIP 0.9.0-1
Signed-off-by: Dirk Brenken <dev@brenken.org>
Diffstat (limited to 'applications/luci-app-banip/htdocs/luci-static/resources')
-rw-r--r-- | applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js index a11fde7dc9..896b3194d4 100644 --- a/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js +++ b/applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js @@ -414,6 +414,20 @@ return view.extend({ o.optional = true; o.rmempty = true; + o = s.taboption('adv_chain', widgets.DeviceSelect, 'ban_vlanallow', _('Allow VLAN Forwads'), _('Always allow certain VLAN forwards.')); + o.unspecified = true; + o.multiple = true; + o.nocreate = true; + o.optional = true; + o.rmempty = true; + + o = s.taboption('adv_chain', widgets.DeviceSelect, 'ban_vlanblock', _('Block VLAN Forwads'), _('Always block certain VLAN forwards.')); + o.unspecified = true; + o.multiple = true; + o.nocreate = true; + o.optional = true; + o.rmempty = true; + o = s.taboption('adv_chain', form.ListValue, 'ban_blockpolicy', _('Default Block Policy'), _('By default each feed is active in all supported chains. Limit the default block policy to a certain chain.')); o.value('input', _('WAN-Input Chain')); o.value('forwardwan', _('WAN-Forward Chain')); |