summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-yggdrasil/root
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2020-02-05 16:51:19 +0100
committerJo-Philipp Wich <jo@mein.io>2020-02-05 16:52:58 +0100
commit625abbfdbe94dada023ebd8ea69778173d1a7351 (patch)
tree17151c468b7ea796f677e5cd9fd0d2b09f04905d /applications/luci-app-yggdrasil/root
parent535d4cf8b914b13ccae6d130ed865235a66b4662 (diff)
treewide: convert simple Lua controllers to declarative JSON
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-yggdrasil/root')
-rw-r--r--applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json65
1 files changed, 65 insertions, 0 deletions
diff --git a/applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json b/applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json
new file mode 100644
index 0000000000..dbe9331b2f
--- /dev/null
+++ b/applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json
@@ -0,0 +1,65 @@
+{
+ "admin/network/yggdrasil": {
+ "title": "Yggdrasil",
+ "action": {
+ "type": "firstchild"
+ },
+ "depends": {
+ "uci": { "yggdrasil": true }
+ }
+ },
+
+ "admin/network/yggdrasil/status": {
+ "title": "Status",
+ "order": 1,
+ "action": {
+ "type": "view",
+ "path": "yggdrasil/status"
+ }
+ },
+
+ "admin/network/yggdrasil/peers": {
+ "title": "Peers",
+ "order": 2,
+ "action": {
+ "type": "view",
+ "path": "yggdrasil/peers"
+ }
+ },
+
+ "admin/network/yggdrasil/settings": {
+ "title": "Settings",
+ "order": 3,
+ "action": {
+ "type": "view",
+ "path": "yggdrasil/settings"
+ }
+ },
+
+ "admin/network/yggdrasil/keys": {
+ "title": "Encryption keys",
+ "order": 4,
+ "action": {
+ "type": "view",
+ "path": "yggdrasil/keys"
+ }
+ },
+
+ "admin/network/yggdrasil/session_firewall": {
+ "title": "Session firewall",
+ "order": 5,
+ "action": {
+ "type": "view",
+ "path": "yggdrasil/session_firewall"
+ }
+ },
+
+ "admin/network/yggdrasil/tunnel_routing": {
+ "title": "Tunnel routing",
+ "order": 6,
+ "action": {
+ "type": "view",
+ "path": "yggdrasil/tunnel_routing"
+ }
+ }
+}