diff options
author | Byron Jones <glob@mozilla.com> | 2015-01-27 04:47:42 +0100 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-01-27 04:47:42 +0100 |
commit | a748745d3eb9110b0c6bcd803d8d86db8951ad43 (patch) | |
tree | ca477a3af19b85db7c546bace4ce9e93186a3b21 /extensions/MyDashboard | |
parent | cd92366e1a3a89228917140e9c2f8747a17509b3 (diff) | |
download | bugzilla-a748745d3eb9110b0c6bcd803d8d86db8951ad43.tar.gz bugzilla-a748745d3eb9110b0c6bcd803d8d86db8951ad43.tar.xz |
Bug 1124437: Backport upstream bug 1090275 to bmo/4.2 to whitelist webservice api methods
Diffstat (limited to 'extensions/MyDashboard')
-rw-r--r-- | extensions/MyDashboard/lib/WebService.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/extensions/MyDashboard/lib/WebService.pm b/extensions/MyDashboard/lib/WebService.pm index 9e9de42be..c93553146 100644 --- a/extensions/MyDashboard/lib/WebService.pm +++ b/extensions/MyDashboard/lib/WebService.pm @@ -24,6 +24,13 @@ use constant READ_ONLY => qw( run_flag_query ); +use constant PUBLIC_METHODS => qw( + bug_interest_unmark + run_bug_query + run_flag_query + run_last_changes +); + sub run_last_changes { my ($self, $params) = @_; |