From f1771d14aaa5f489d925f4ae775ae54a74ed7b81 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 19 Jan 2020 19:37:28 +0100 Subject: luci-app-firewall: add SNAT config migration Signed-off-by: Jo-Philipp Wich --- .../htdocs/luci-static/resources/view/firewall/snats.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js') diff --git a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js index 2db02d9444..9efa1a7497 100644 --- a/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js +++ b/applications/luci-app-firewall/htdocs/luci-static/resources/view/firewall/snats.js @@ -106,11 +106,19 @@ return L.view.extend({ load: function() { return Promise.all([ this.callHostHints(), - this.callNetworkDevices() + this.callNetworkDevices(), + uci.load('firewall') ]); }, render: function(data) { + if (fwtool.checkLegacySNAT()) + return fwtool.renderMigration(); + else + return this.renderNats(data); + }, + + renderNats: function(data) { var hosts = data[0], devs = data[1], m, s, o; -- cgit v1.2.3