summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-ttyd/luasrc/controller/ttyd.lua
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-app-ttyd/luasrc/controller/ttyd.lua')
-rw-r--r--applications/luci-app-ttyd/luasrc/controller/ttyd.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/applications/luci-app-ttyd/luasrc/controller/ttyd.lua b/applications/luci-app-ttyd/luasrc/controller/ttyd.lua
new file mode 100644
index 000000000..5a7344d84
--- /dev/null
+++ b/applications/luci-app-ttyd/luasrc/controller/ttyd.lua
@@ -0,0 +1,13 @@
+-- Licensed to the public under the Apache License 2.0.
+
+module("luci.controller.ttyd", package.seeall)
+
+function index()
+ if not nixio.fs.access("/etc/config/ttyd") then
+ return
+ end
+
+ entry({"admin", "services", "ttyd"}, firstchild(), _("ttyd"))
+ entry({"admin", "services", "ttyd", "ttyd"}, view("ttyd/term"), _("Terminal"), 1)
+ entry({"admin", "services", "ttyd", "config"}, view("ttyd/config"), _("Config"), 2)
+end