summaryrefslogtreecommitdiffstats
path: root/extensions/BMO/lib
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2014-11-26 23:01:03 +0100
committerDavid Lawrence <dkl@mozilla.com>2014-11-26 23:01:03 +0100
commit412b8264dd8b7832e273be8e887df2c47c46b297 (patch)
tree0aec273e0a4d872949c5b3d26ee2feeeca9eb2ca /extensions/BMO/lib
parent55d148d167630fce08f40e6fcf2ab9def0b9699d (diff)
downloadbugzilla-412b8264dd8b7832e273be8e887df2c47c46b297.tar.gz
bugzilla-412b8264dd8b7832e273be8e887df2c47c46b297.tar.xz
Bug 1063818: Updates to form.dev-engagement-event
Diffstat (limited to 'extensions/BMO/lib')
-rw-r--r--extensions/BMO/lib/Constants.pm12
1 files changed, 12 insertions, 0 deletions
diff --git a/extensions/BMO/lib/Constants.pm b/extensions/BMO/lib/Constants.pm
index 23eaae9cb..b60c8fd37 100644
--- a/extensions/BMO/lib/Constants.pm
+++ b/extensions/BMO/lib/Constants.pm
@@ -24,10 +24,22 @@ use strict;
use base qw(Exporter);
our @EXPORT = qw(
REQUEST_MAX_ATTACH_LINES
+ DEV_ENGAGE_DISCUSS_NEEDINFO
);
# Maximum attachment size in lines that will be sent with a
# requested attachment flag notification.
use constant REQUEST_MAX_ATTACH_LINES => 1000;
+# Requestees who need a needinfo flag set for the dev engagement
+# discussion bug
+use constant DEV_ENGAGE_DISCUSS_NEEDINFO => qw(
+ afabbro@mozilla.com
+ dcamp@mozilla.com
+ jswisher@mozilla.com
+ rchau@mozilla.com
+ stormy@mozilla.com
+ spersing@mozilla.com
+);
+
1;