summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-yggdrasil/luasrc
diff options
context:
space:
mode:
authorGeorge Iv <57254463+zhoreeq@users.noreply.github.com>2019-12-01 00:32:50 -0500
committerGeorge Iv <57254463+zhoreeq@users.noreply.github.com>2019-12-01 00:32:50 -0500
commit277d4e3268dd47f2fa94046aa24bb990ea4d2c59 (patch)
tree61dc91bc2b364359d210fa06da17fa431bd1d35c /applications/luci-app-yggdrasil/luasrc
parentdb244bcbb4eb5a4c1a73373a1c55c60e2f60fe6c (diff)
luci-app-yggdrasil: Add application for Yggdrasil
Signed-off-by: George Iv <57254463+zhoreeq@users.noreply.github.com>
Diffstat (limited to 'applications/luci-app-yggdrasil/luasrc')
-rw-r--r--applications/luci-app-yggdrasil/luasrc/controller/yggdrasil.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/applications/luci-app-yggdrasil/luasrc/controller/yggdrasil.lua b/applications/luci-app-yggdrasil/luasrc/controller/yggdrasil.lua
new file mode 100644
index 000000000..8a955520f
--- /dev/null
+++ b/applications/luci-app-yggdrasil/luasrc/controller/yggdrasil.lua
@@ -0,0 +1,16 @@
+module("luci.controller.yggdrasil", package.seeall)
+
+function index()
+ if not nixio.fs.access("/etc/config/yggdrasil") then
+ return
+ end
+
+ entry({"admin", "network", "yggdrasil"}, firstchild(), "Yggdrasil").dependent = true
+ entry({"admin", "network", "yggdrasil", "status"}, view("yggdrasil/status"), _("Status"), 1).leaf = false
+
+ entry({"admin", "network", "yggdrasil", "peers"}, view("yggdrasil/peers"), _("Peers"), 2).leaf = false
+ entry({"admin", "network", "yggdrasil", "settings"}, view("yggdrasil/settings"), _("Settings"), 3).leaf = false
+ entry({"admin", "network", "yggdrasil", "keys"}, view("yggdrasil/keys"), _("Encryption keys"), 4).leaf = false
+ entry({"admin", "network", "yggdrasil", "session_firewall"}, view("yggdrasil/session_firewall"), _("Session firewall"), 5).leaf = false
+ entry({"admin", "network", "yggdrasil", "tunnel_routing"}, view("yggdrasil/tunnel_routing"), _("Tunnel routing"), 6).leaf = false
+end