diff options
author | Hannu Nyman <hannu.nyman@iki.fi> | 2017-01-27 10:34:46 +0200 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2017-01-27 10:34:46 +0200 |
commit | c5b84f2fba12d4779677840c9e2186794f6f85b2 (patch) | |
tree | 631d635ea084a7e4d3ef64e54ab6d89cdaeed57b | |
parent | afb5c8682d18fd620d8eb857a0f736e9ce25c614 (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.lua | 4 |
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 |