summaryrefslogtreecommitdiffstats
path: root/app/acf-util/welcome-controller.lua
diff options
context:
space:
mode:
Diffstat (limited to 'app/acf-util/welcome-controller.lua')
-rw-r--r--app/acf-util/welcome-controller.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/acf-util/welcome-controller.lua b/app/acf-util/welcome-controller.lua
index 77735ec..b35266c 100644
--- a/app/acf-util/welcome-controller.lua
+++ b/app/acf-util/welcome-controller.lua
@@ -1,10 +1,10 @@
-- A standin controller for testing
-module (..., package.seeall)
+local mymodule = {}
-default_action = "read"
+mymodule.default_action = "read"
-read = function (self )
+mymodule.read = function (self )
return ( {self = self} )
end
-
+return mymodule