summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-dawn/luasrc/controller
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-dawn/luasrc/controller')
-rw-r--r--applications/luci-app-dawn/luasrc/controller/dawn.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/applications/luci-app-dawn/luasrc/controller/dawn.lua b/applications/luci-app-dawn/luasrc/controller/dawn.lua
new file mode 100644
index 0000000000..64055b4af3
--- /dev/null
+++ b/applications/luci-app-dawn/luasrc/controller/dawn.lua
@@ -0,0 +1,8 @@
+module("luci.controller.dawn", package.seeall)
+
+function index()
+ entry({ "admin", "dawn" }, firstchild(), "DAWN", 60).dependent = false
+ entry({ "admin", "dawn", "configure_daemon" }, cbi("dawn/dawn_config"), "Configure DAWN", 1)
+ entry({ "admin", "dawn", "view_network" }, cbi("dawn/dawn_network"), "View Network Overview", 2)
+ entry({ "admin", "dawn", "view_hearing_map" }, cbi("dawn/dawn_hearing_map"), "View Hearing Map", 3)
+end