summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-firewall/luasrc/controller/firewall.lua
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-firewall/luasrc/controller/firewall.lua')
-rw-r--r--applications/luci-app-firewall/luasrc/controller/firewall.lua19
1 files changed, 0 insertions, 19 deletions
diff --git a/applications/luci-app-firewall/luasrc/controller/firewall.lua b/applications/luci-app-firewall/luasrc/controller/firewall.lua
deleted file mode 100644
index 5f8cb6ef3..000000000
--- a/applications/luci-app-firewall/luasrc/controller/firewall.lua
+++ /dev/null
@@ -1,19 +0,0 @@
-module("luci.controller.firewall", package.seeall)
-
-function index()
- entry({"admin", "network", "firewall"},
- alias("admin", "network", "firewall", "zones"),
- _("Firewall"), 60)
-
- entry({"admin", "network", "firewall", "zones"},
- view("firewall/zones"), _("General Settings"), 10)
-
- entry({"admin", "network", "firewall", "forwards"},
- view("firewall/forwards"), _("Port Forwards"), 20)
-
- entry({"admin", "network", "firewall", "rules"},
- view("firewall/rules"), _("Traffic Rules"), 30)
-
- entry({"admin", "network", "firewall", "custom"},
- view("firewall/custom"), _("Custom Rules"), 40).leaf = true
-end