summaryrefslogtreecommitdiffstats
path: root/Bugzilla/WebService
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/WebService')
-rw-r--r--Bugzilla/WebService/Product.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/WebService/Product.pm b/Bugzilla/WebService/Product.pm
index b7484327f..bccaa8347 100644
--- a/Bugzilla/WebService/Product.pm
+++ b/Bugzilla/WebService/Product.pm
@@ -205,6 +205,8 @@ sub _product_to_hash {
# BMO - add default hw/os
$field_data->{default_platform} = $self->type('string', $product->default_platform);
$field_data->{default_op_sys} = $self->type('string', $product->default_op_sys);
+ # BMO - add default security group
+ $field_data->{default_security_group} = $self->type('string', $product->default_security_group);
return filter($params, $field_data);
}