aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla/WebService/Classification.pm
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2015-01-21 20:40:07 +0000
committerDavid Lawrence <dkl@mozilla.com>2015-01-21 20:40:07 +0000
commit211464d955dc76a67afcda8e87a1462e28dbbb83 (patch)
treeef3b63c936833cb2e1cd78438f37a67824f5b24b /Bugzilla/WebService/Classification.pm
parent19117cc3e4da268d64107957e4c206d8df875505 (diff)
downloadbugs-211464d955dc76a67afcda8e87a1462e28dbbb83.tar
bugs-211464d955dc76a67afcda8e87a1462e28dbbb83.tar.gz
bugs-211464d955dc76a67afcda8e87a1462e28dbbb83.tar.bz2
bugs-211464d955dc76a67afcda8e87a1462e28dbbb83.tar.xz
bugs-211464d955dc76a67afcda8e87a1462e28dbbb83.zip
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/Classification.pm')
-rw-r--r--Bugzilla/WebService/Classification.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/Bugzilla/WebService/Classification.pm b/Bugzilla/WebService/Classification.pm
index 8e1b3ae8a..cee597b68 100644
--- a/Bugzilla/WebService/Classification.pm
+++ b/Bugzilla/WebService/Classification.pm
@@ -21,6 +21,10 @@ use constant READ_ONLY => qw(
get
);
+use constant PUBLIC_METHODS => qw(
+ get
+);
+
sub get {
my ($self, $params) = validate(@_, 'names', 'ids');