mirror of
https://github.com/lxsang/antd-web-apps
synced 2024-11-20 02:18:20 +01:00
10 lines
227 B
Lua
10 lines
227 B
Lua
BaseController:subclass("IndexController")
|
|
|
|
function IndexController:index(...)
|
|
return true
|
|
end
|
|
|
|
function IndexController:actionnotfound(...)
|
|
self.template:setView("index")
|
|
return self:index(table.unpack({...}))
|
|
end |