mirror of
https://github.com/lxsang/antd-web-apps
synced 2024-12-29 02:38:22 +01:00
13 lines
299 B
Lua
13 lines
299 B
Lua
|
BaseController:subclass("WebVNCController", {
|
||
|
registry = {}
|
||
|
})
|
||
|
|
||
|
function WebVNCController:index( ... )
|
||
|
self.template:set("args", "['WebVNC']")
|
||
|
return true
|
||
|
end
|
||
|
|
||
|
function WebVNCController:actionnotfound(...)
|
||
|
self.template:setView("index")
|
||
|
return self:index(table.unpack({...}))
|
||
|
end
|