summaryrefslogtreecommitdiffstats
path: root/app/welcome-controller.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-04-24 20:31:58 +0000
committerTed Trask <ttrask01@yahoo.com>2008-04-24 20:31:58 +0000
commit2ac0d30c272dc9c36c81792f608e4f6ce231ba7e (patch)
treece325a3c7c5614f634ea25e28bdaadedeadd791e /app/welcome-controller.lua
parentf87baaa40bcc86b62759df6bf884ff53548f348c (diff)
downloadacf-core-2ac0d30c272dc9c36c81792f608e4f6ce231ba7e.tar.bz2
acf-core-2ac0d30c272dc9c36c81792f608e4f6ce231ba7e.tar.xz
Replaced all list_redir functions with redirect in mvc.lua, implemented a default_action string in each controller, removing the on_load functions
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@1037 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'app/welcome-controller.lua')
-rw-r--r--app/welcome-controller.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/welcome-controller.lua b/app/welcome-controller.lua
index 3ff5cc5..77735ec 100644
--- a/app/welcome-controller.lua
+++ b/app/welcome-controller.lua
@@ -1,6 +1,8 @@
-- A standin controller for testing
module (..., package.seeall)
+default_action = "read"
+
read = function (self )
return ( {self = self} )
end