diff options
-rw-r--r-- | tinydns-controller.lua | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/tinydns-controller.lua b/tinydns-controller.lua index b8c2b6b..652f262 100644 --- a/tinydns-controller.lua +++ b/tinydns-controller.lua @@ -6,12 +6,6 @@ local newrecordtxt = "[New]" -- ################################################################################ -- LOCAL FUNCTIONS -local list_redir = function (self) - self.conf.action = "status" - self.conf.type = "redir" - error (self.conf) -end - local function getstatus(self) local status = self.model.getstatus() if (#status.status.value > 0) then @@ -108,12 +102,7 @@ end -- ################################################################################ -- PUBLIC FUNCTIONS -mvc = {} -mvc.on_load = function(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 = "status" function status(self) local config = {} |