summaryrefslogtreecommitdiffstats
path: root/pingu-controller.lua
diff options
context:
space:
mode:
Diffstat (limited to 'pingu-controller.lua')
-rw-r--r--pingu-controller.lua18
1 files changed, 18 insertions, 0 deletions
diff --git a/pingu-controller.lua b/pingu-controller.lua
new file mode 100644
index 0000000..d4c7437
--- /dev/null
+++ b/pingu-controller.lua
@@ -0,0 +1,18 @@
+module(..., package.seeall)
+
+-- Load libraries
+require("controllerfunctions")
+
+default_action = "status"
+
+function status(self)
+ return self.model.getstatus()
+end
+
+function startstop(self)
+ return controllerfunctions.handle_startstop(self, self.model.startstop_service, self.model.getstatus, self.clientdata)
+end
+
+function expert(self)
+ return controllerfunctions.handle_form(self, self.model.get_filedetails, self.model.update_filedetails, self.clientdata, "Save", "Edit Pingu Config", "Configuration Set")
+end