diff options
author | David Lawrence <dkl@mozilla.com> | 2015-01-21 21:37:49 +0100 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2015-01-21 21:37:49 +0100 |
commit | 16122921b2f68b490a61cd80ae9ea5ee661ae11b (patch) | |
tree | a92202fcfc92df21b3e8218926203042aecaf918 /extensions | |
parent | 4dabf1a9c679f06b3637d3c76e1e05aa83a6d259 (diff) | |
download | bugzilla-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 'extensions')
-rw-r--r-- | extensions/Example/lib/WebService.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/extensions/Example/lib/WebService.pm b/extensions/Example/lib/WebService.pm index c8c120616..d8a96b5f5 100644 --- a/extensions/Example/lib/WebService.pm +++ b/extensions/Example/lib/WebService.pm @@ -13,6 +13,11 @@ use warnings; use parent qw(Bugzilla::WebService); use Bugzilla::Error; +use constant PUBLIC_METHODS => qw( + hello + throw_an_error +); + # This can be called as Example.hello() from the WebService. sub hello { return 'Hello!'; } |