summaryrefslogtreecommitdiffstats
path: root/password-controller.lua
blob: 9982ada423ca4ce6029b1074476f438ee35d75b4 (plain)
1
2
3
4
5
6
7
8
-- the password controller
module (..., package.seeall)

default_action = "edit"

edit = function (self)
	return self.handle_form(self, self.model.read_password, self.model.update_password, self.clientdata, "Save", "Set System Password", "Password Set")
end