diff options
Diffstat (limited to 'acfupdate-controller.lua')
-rw-r--r-- | acfupdate-controller.lua | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/acfupdate-controller.lua b/acfupdate-controller.lua index def2ba7..df8fdf5 100644 --- a/acfupdate-controller.lua +++ b/acfupdate-controller.lua @@ -1,24 +1,9 @@ module (..., package.seeall) -- ################################################################################ --- LOCAL FUNCTIONS - -local function list_redir (self) - self.conf.action = "read" - self.conf.type = "redir" - error (self.conf) -end - --- ################################################################################ -- PUBLIC FUNCTIONS -mvc={} -function mvc.on_load(self, parent) - if (self.worker[self.conf.action] == nil ) or ( self.conf.action == "init" ) then - self.worker[self.conf.action] = list_redir(self) - end -end - +default_action = "read" function read (self ) return ({projects = self.model:get(), |