lede/package/lean/luci-app-vlmcsd/luasrc/model/cbi/vlmcsd/basic.lua
2021-11-01 09:57:56 +08:00

18 lines
468 B
Lua

m = Map("vlmcsd")
m.title = translate("KMS Server")
m.description = translate("A KMS Server Emulator to active your Windows or Office")
m:section(SimpleSection).template = "vlmcsd/vlmcsd_status"
s = m:section(TypedSection, "vlmcsd")
s.addremove = false
s.anonymous = true
enable = s:option(Flag, "enabled", translate("Enable"))
enable.rmempty = false
autoactivate = s:option(Flag, "autoactivate", translate("Auto activate"))
autoactivate.rmempty = false
return m