summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2020-01-19 19:37:28 +0100
committerJo-Philipp Wich <jo@mein.io>2020-01-19 19:38:07 +0100
commitf1771d14aaa5f489d925f4ae775ae54a74ed7b81 (patch)
treee720b9c85eae07248419b63e0087746d6e648c37 /applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js
parentafaa4e2de8ac9a6a626bc2aed54733a4c89dc2e5 (diff)
luci-app-firewall: add SNAT config migration
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js')
-rw-r--r--applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js
index cc85e6676..b68f428d9 100644
--- a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js
+++ b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/rules.js
@@ -152,11 +152,19 @@ return L.view.extend({
load: function() {
return Promise.all([
this.callHostHints(),
- this.callConntrackHelpers()
+ this.callConntrackHelpers(),
+ uci.load('firewall')
]);
},
render: function(data) {
+ if (fwtool.checkLegacySNAT())
+ return fwtool.renderMigration();
+ else
+ return this.renderRules(data);
+ },
+
+ renderRules: function(data) {
var hosts = data[0],
ctHelpers = data[1],
m, s, o;