diff options
author | Ted Trask <ttrask01@yahoo.com> | 2011-09-08 20:39:35 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2011-09-08 20:39:35 +0000 |
commit | bd9bd1963b653757970e1d79f4202774aade1577 (patch) | |
tree | be6a2e427d7039550d02ccb4e1f34c97a177cf65 /weblog-controller.lua | |
parent | 70aa90177516e8c3c202b32df1e0cc9221d9e43e (diff) | |
download | acf-weblog-bd9bd1963b653757970e1d79f4202774aade1577.tar.bz2 acf-weblog-bd9bd1963b653757970e1d79f4202774aade1577.tar.xz |
Removed watchlist functionality
Diffstat (limited to 'weblog-controller.lua')
-rw-r--r-- | weblog-controller.lua | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/weblog-controller.lua b/weblog-controller.lua index 6e5d469..90d2edf 100644 --- a/weblog-controller.lua +++ b/weblog-controller.lua @@ -37,18 +37,6 @@ function viewactivitylog(self) return self.model.getactivitylog() end -function viewwatchlist(self) - return self.model.getwatchlist() -end - -function createwatchlistentry(self) - return controllerfunctions.handle_form(self, self.model.getnewwatchlistentry, self.model.createwatchlistentry, self.clientdata, "Create", "Create new watchlist entry", "New watchlist entry created") -end - -function deletewatchlistentry(self) - return self:redirect_to_referrer(self.model.deletewatchlistent(self.clientdata.clientuserid)) -end - function viewweblog(self) return self.model.getweblog(self.clientdata.activelog, self.clientdata.clientuserid, self.clientdata.starttime, self.clientdata.endtime, self.clientdata.clientip, self.clientdata.badyesno, self.clientdata.deniedyesno, self.clientdata.bypassyesno, self.clientdata.score, self.clientdata.urisearch, self.clientdata.sortby, self.clientdata.selected, clientdata.focus) end |