diff options
Diffstat (limited to 'applications/luci-app-ttyd/luasrc')
-rw-r--r-- | applications/luci-app-ttyd/luasrc/controller/ttyd.lua | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/applications/luci-app-ttyd/luasrc/controller/ttyd.lua b/applications/luci-app-ttyd/luasrc/controller/ttyd.lua deleted file mode 100644 index 5a7344d846..0000000000 --- a/applications/luci-app-ttyd/luasrc/controller/ttyd.lua +++ /dev/null @@ -1,13 +0,0 @@ --- 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 |