mirror of
https://github.com/lxsang/antd-web-apps
synced 2025-01-15 17:28:25 +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
|