From 12e83e35b1ba306428507109fd17ccd75241ab50 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 3 Dec 2013 10:37:10 -0800 Subject: Bug 945501: create 'Firefox :: Developer Tools: User Stories' component and enable the User Story extension on this component --- extensions/UserStory/lib/Constants.pm | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'extensions/UserStory/lib/Constants.pm') 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; -- cgit v1.2.3-24-g4f1b