summaryrefslogtreecommitdiffstats
path: root/Bugzilla/WebService/BugUserLastVisit.pm
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2015-01-21 21:37:49 +0100
committerDavid Lawrence <dkl@mozilla.com>2015-01-21 21:37:49 +0100
commit16122921b2f68b490a61cd80ae9ea5ee661ae11b (patch)
treea92202fcfc92df21b3e8218926203042aecaf918 /Bugzilla/WebService/BugUserLastVisit.pm
parent4dabf1a9c679f06b3637d3c76e1e05aa83a6d259 (diff)
downloadbugzilla-16122921b2f68b490a61cd80ae9ea5ee661ae11b.tar.gz
bugzilla-16122921b2f68b490a61cd80ae9ea5ee661ae11b.tar.xz
Bug 1090275: WebServices modules should maintain a whitelist of methods that are allowed instead of allowing access to any function imported into its namespace
r=dylan,a=glob
Diffstat (limited to 'Bugzilla/WebService/BugUserLastVisit.pm')
-rw-r--r--Bugzilla/WebService/BugUserLastVisit.pm5
1 files changed, 5 insertions, 0 deletions
diff --git a/Bugzilla/WebService/BugUserLastVisit.pm b/Bugzilla/WebService/BugUserLastVisit.pm
index a29d2633b..19a56ff46 100644
--- a/Bugzilla/WebService/BugUserLastVisit.pm
+++ b/Bugzilla/WebService/BugUserLastVisit.pm
@@ -18,6 +18,11 @@ use Bugzilla::Error;
use Bugzilla::WebService::Util qw( validate filter );
use Bugzilla::Constants;
+use constant PUBLIC_METHODS => qw(
+ get
+ update
+);
+
sub update {
my ($self, $params) = validate(@_, 'ids');
my $user = Bugzilla->user;