luci: Remove

Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
This commit is contained in:
Jianhui Zhao
2020-09-28 20:37:34 +08:00
parent b26f4d50fb
commit 97c12a7c51
2 changed files with 0 additions and 32 deletions
-5
View File
@@ -1,5 +0,0 @@
module("luci.controller.rtty", package.seeall)
function index()
entry({"admin", "system", "rtty"}, cbi("rtty"), _("Rtty"), 90)
end
-27
View File
@@ -1,27 +0,0 @@
local m, s, o
m = Map("rtty", translate("Rtty"))
m:chain("luci")
s = m:section(TypedSection, "rtty")
s.anonymous = true
s.addremove = true
o = s:option(Value, "id", translate("ID"))
o = s:option(Value, "host", translate("Server"))
o = s:option(Value, "port", translate("Port"))
o.datatype = "port"
o = s:option(Flag, "ssl", translate("SSL"))
o = s:option(Value, "description", translate("Description"))
o = s:option(Value, "token", translate("Token"))
return m