summaryrefslogtreecommitdiffstats
path: root/extensions/Example/Extension.pm
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2014-11-11 04:17:10 +0100
committerByron Jones <glob@mozilla.com>2014-11-11 04:17:10 +0100
commit2d223dcbe7bf5c045a11ea489a0964129518731e (patch)
tree28c45230ef0b80f5d4f8d5f4a0dc414a89a72f8e /extensions/Example/Extension.pm
parentc2533c1f2e7c5c4376eb0dae17c3380b04067678 (diff)
downloadbugzilla-2d223dcbe7bf5c045a11ea489a0964129518731e.tar.gz
bugzilla-2d223dcbe7bf5c045a11ea489a0964129518731e.tar.xz
Bug 1089805: BzAPI compatibility layer returns HTTP 200 when a bug update failed
Diffstat (limited to 'extensions/Example/Extension.pm')
-rw-r--r--extensions/Example/Extension.pm12
1 files changed, 11 insertions, 1 deletions
diff --git a/extensions/Example/Extension.pm b/extensions/Example/Extension.pm
index a42f87b9e..5b76935e3 100644
--- a/extensions/Example/Extension.pm
+++ b/extensions/Example/Extension.pm
@@ -32,6 +32,7 @@ use Bugzilla::User::Setting;
use Bugzilla::Util qw(diff_arrays html_quote);
use Bugzilla::Status qw(is_open_state);
use Bugzilla::Install::Filesystem;
+use Bugzilla::WebService::Constants;
# This is extensions/Example/lib/Util.pm. I can load this here in my
# Extension.pm only because I have a Config.pm.
@@ -950,11 +951,20 @@ sub webservice {
sub webservice_error_codes {
my ($self, $args) = @_;
-
+
my $error_map = $args->{error_map};
$error_map->{'example_my_error'} = 10001;
}
+sub webservice_status_code_map {
+ my ($self, $args) = @_;
+
+ my $status_code_map = $args->{status_code_map};
+ # Uncomment this line to override the status code for the
+ # error 'object_does_not_exist' to STATUS_BAD_REQUEST
+ #$status_code_map->{51} = STATUS_BAD_REQUEST;
+}
+
sub webservice_before_call {
my ($self, $args) = @_;