luci-base: add vpn menu section
authorFlorian Eckert <fe@dev.tdt.de>
Tue, 6 Aug 2019 14:03:29 +0000 (16:03 +0200)
committerFlorian Eckert <fe@dev.tdt.de>
Tue, 6 Aug 2019 14:20:17 +0000 (16:20 +0200)
There is always more vpn services. To make the LuCI menu look cleaner, a
new top level menu "VPN" will be added with this commit. All luci-app-*
that have something to do with VPN should move to this new menu entry.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
modules/luci-base/luasrc/controller/admin/index.lua

index 9fcfe4a309872295c7d84eae58da54cb01593268..3f2b465879500cdc2e11a450b37e9adbe062458f 100644 (file)
@@ -50,6 +50,13 @@ function index()
        -- system/system is from mod-admin-full
        toplevel_page(page, "admin/system/system", alias("admin", "system", "system"))
 
+       -- Only used if applications add items
+       page = node("admin", "vpn")
+       page.title = _("VPN")
+       page.order = 30
+       page.index = true
+       toplevel_page(page, false, false)
+
        -- Only used if applications add items
        page = node("admin", "services")
        page.title = _("Services")