summaryrefslogtreecommitdiffstats
path: root/password-controller.lua
diff options
context:
space:
mode:
Diffstat (limited to 'password-controller.lua')
-rw-r--r--password-controller.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/password-controller.lua b/password-controller.lua
index 3060e76..9982ada 100644
--- a/password-controller.lua
+++ b/password-controller.lua
@@ -1,10 +1,8 @@
-- the password controller
module (..., package.seeall)
-require("controllerfunctions")
-
default_action = "edit"
edit = function (self)
- return controllerfunctions.handle_form(self, self.model.read_password, self.model.update_password, self.clientdata, "Save", "Set System Password", "Password Set")
+ return self.handle_form(self, self.model.read_password, self.model.update_password, self.clientdata, "Save", "Set System Password", "Password Set")
end