use Bugzilla::User::Setting;
use Bugzilla::Status;
+BEGIN { Bugzilla->extensions }
+
my $dbh = Bugzilla->dbh;
# set Bugzilla usage mode to USAGE_MODE_CMDLINE
realname => 'Nobody; OK to take it and work on it',
password => '*'
},
+ map {
+ {
+ login => $_,
+ realname => (split(/@/, $_, 2))[0],
+ password => '*',
+ }
+ } map {
+ map { @$_ } values %$_
+ } values %Bugzilla::Extension::BMO::Data::group_auto_cc,
);
print "creating user accounts...\n";
all_products => 0,
bug_group => 0,
},
+ {
+ name => 'partner-confidential',
+ description => 'Restrict the visibility of this bug to the assignee, QA contact, and CC list only.',
+ no_admin => 1,
+ all_products => 0,
+ bug_group => 1,
+ },
+ {
+ name => 'partner-confidential-visible',
+ description => 'Members of this group will be able to use the partner-confidential group when filing bugs',
+ no_admin => 0,
+ all_products => 0,
+ bug_group => 0,
+ },
);
print "creating groups...\n";