summaryrefslogtreecommitdiffstats
path: root/app/acf-util/welcome-controller.lua
blob: b35266ca16bf4fc996ae1e47f3f15ef3a212db03 (plain)
1
2
3
4
5
6
7
8
9
10
-- A standin controller for testing
local mymodule = {}

mymodule.default_action = "read"

mymodule.read = function (self )
	return ( {self = self} )
end

return mymodule