summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Component.pm
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2017-04-04 22:58:43 +0200
committerDylan William Hardison <dylan@hardison.net>2017-04-04 22:58:59 +0200
commit746bdf1db9c10d1e5fc8fc66a0ce876aa29f92da (patch)
tree51a766d5e4732ae88707152e11e785bc90d5e266 /Bugzilla/Component.pm
parentb9d6d8634866ab5687eafbdda4159b39aae392ff (diff)
downloadbugzilla-746bdf1db9c10d1e5fc8fc66a0ce876aa29f92da.tar.gz
bugzilla-746bdf1db9c10d1e5fc8fc66a0ce876aa29f92da.tar.xz
Bug 1321595 - Add triage owner to the needinfo suggestion dropdown
Diffstat (limited to 'Bugzilla/Component.pm')
-rw-r--r--Bugzilla/Component.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/Component.pm b/Bugzilla/Component.pm
index 68024c2fa..10da7137b 100644
--- a/Bugzilla/Component.pm
+++ b/Bugzilla/Component.pm
@@ -438,6 +438,8 @@ sub description { return $_[0]->{'description'}; }
sub product_id { return $_[0]->{'product_id'}; }
sub is_active { return $_[0]->{'isactive'}; }
+sub triage_owner_id { return $_[0]->{'triage_owner_id'} }
+
##############################################
# Implement Bugzilla::Field::ChoiceInterface #
##############################################