summaryrefslogtreecommitdiffstats
path: root/password-controller.lua
blob: 3060e76e255bf02f0061af3386d1baad50402ec4 (plain)
1
2
3
4
5
6
7
8
9
10
-- 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")
end