diff options
author | Byron Jones <bjones@mozilla.com> | 2013-12-03 19:37:10 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-12-03 19:37:10 +0100 |
commit | 12e83e35b1ba306428507109fd17ccd75241ab50 (patch) | |
tree | 8f1adaf3dbdae342d7b46ea3b3abb01d59385423 /extensions/UserStory/lib | |
parent | 17ef78318ced6442cab20e3e5e1369f043eb5d9e (diff) | |
download | bugzilla-12e83e35b1ba306428507109fd17ccd75241ab50.tar.gz bugzilla-12e83e35b1ba306428507109fd17ccd75241ab50.tar.xz |
Bug 945501: create 'Firefox :: Developer Tools: User Stories' component and enable the User Story extension on this component
Diffstat (limited to 'extensions/UserStory/lib')
-rw-r--r-- | extensions/UserStory/lib/Constants.pm | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/extensions/UserStory/lib/Constants.pm b/extensions/UserStory/lib/Constants.pm index dca38154c..972e7c53d 100644 --- a/extensions/UserStory/lib/Constants.pm +++ b/extensions/UserStory/lib/Constants.pm @@ -12,11 +12,18 @@ use warnings; use base qw(Exporter); -our @EXPORT = qw( USER_STORY_PRODUCTS ); +our @EXPORT = qw( USER_STORY ); -use constant USER_STORY_PRODUCTS => { - # product group required to edit - Tracking => 'editbugs', +use constant USER_STORY => { + # note - an empty components array means all components + Tracking => { + group => 'editbugs', + components => [], + }, + Firefox => { + group => 'editbugs', + components => [ 'Developer Tools: User Stories' ], + }, }; 1; |