summaryrefslogtreecommitdiffstats
path: root/app/welcome-controller.lua
blob: 77735ec79e0b57ae27892ae087955444a21daf04 (plain)
1
2
3
4
5
6
7
8
9
10
-- A standin controller for testing
module (..., package.seeall)

default_action = "read"

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