diff --git a/luci/controller/rtty.lua b/luci/controller/rtty.lua deleted file mode 100644 index ad7144b..0000000 --- a/luci/controller/rtty.lua +++ /dev/null @@ -1,5 +0,0 @@ -module("luci.controller.rtty", package.seeall) - -function index() - entry({"admin", "system", "rtty"}, cbi("rtty"), _("Rtty"), 90) -end diff --git a/luci/model/cbi/rtty.lua b/luci/model/cbi/rtty.lua deleted file mode 100644 index f8e8294..0000000 --- a/luci/model/cbi/rtty.lua +++ /dev/null @@ -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