mirror of
https://github.com/lxsang/antd-web-apps
synced 2024-11-20 10:18:21 +01:00
13 lines
320 B
Lua
13 lines
320 B
Lua
BaseController:subclass("WvncController", {
|
|
registry = {}
|
|
})
|
|
|
|
function WvncController:index( ... )
|
|
self.template:set("args", "['WVNC', 'wss://localhost:9192/wvnc']")
|
|
return true
|
|
end
|
|
|
|
function WvncController:actionnotfound(...)
|
|
self.template:setView("index")
|
|
return self:index(table.unpack({...}))
|
|
end |