summaryrefslogtreecommitdiffstats
path: root/freeradius3-controller.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2014-09-15 18:08:14 +0000
committerTed Trask <ttrask01@yahoo.com>2014-09-15 18:08:14 +0000
commit2e34d7b6a7eeea84694a987606758bce3d3994ed (patch)
treed0ca8ffbfcb2724a031a5e3632fdc6a887ac6914 /freeradius3-controller.lua
parentbb693ddd74d12f55487b16eab7da40fc2ff13988 (diff)
downloadacf-freeradius3-2e34d7b6a7eeea84694a987606758bce3d3994ed.tar.bz2
acf-freeradius3-2e34d7b6a7eeea84694a987606758bce3d3994ed.tar.xz
Implemented listmacauthfiles action
Points to to-be-implemented editmacauthfile action
Diffstat (limited to 'freeradius3-controller.lua')
-rw-r--r--freeradius3-controller.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/freeradius3-controller.lua b/freeradius3-controller.lua
index f8fc742..a107b21 100644
--- a/freeradius3-controller.lua
+++ b/freeradius3-controller.lua
@@ -50,4 +50,8 @@ function mymodule.editpasswd(self)
return self.handle_form(self, self.model.get_passwd, self.model.update_passwd, self.clientdata, "Save", "Edit Password", "Password Saved")
end
+function mymodule.listmacauthfiles(self)
+ return self.model.list_macauth_files()
+end
+
return mymodule