summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorHannu Nyman <hannu.nyman@iki.fi>2017-01-27 10:34:46 +0200
committerHannu Nyman <hannu.nyman@iki.fi>2017-01-27 10:34:46 +0200
commitc5b84f2fba12d4779677840c9e2186794f6f85b2 (patch)
tree631d635ea084a7e4d3ef64e54ab6d89cdaeed57b
parentafb5c8682d18fd620d8eb857a0f736e9ce25c614 (diff)
luci-app-wol: move to services menu
Move the wake-on-lan app from the network menu to services menu, where other similar apps are located. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
-rw-r--r--applications/luci-app-wol/luasrc/controller/wol.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-wol/luasrc/controller/wol.lua b/applications/luci-app-wol/luasrc/controller/wol.lua
index 73a9594b2..dbbfdde12 100644
--- a/applications/luci-app-wol/luasrc/controller/wol.lua
+++ b/applications/luci-app-wol/luasrc/controller/wol.lua
@@ -1,6 +1,6 @@
module("luci.controller.wol", package.seeall)
function index()
- entry({"admin", "network", "wol"}, cbi("wol"), _("Wake on LAN"), 90)
- entry({"mini", "network", "wol"}, cbi("wol"), _("Wake on LAN"), 90)
+ entry({"admin", "services", "wol"}, cbi("wol"), _("Wake on LAN"), 90)
+ entry({"mini", "services", "wol"}, cbi("wol"), _("Wake on LAN"), 90)
end