summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install.pm
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-10-14 21:06:18 +0200
committerFlorian Pritz <bluewind@xinu.at>2018-12-07 00:25:53 +0100
commit8c3fdaa797bc941aeb07ec8dc36361d6f34ccc98 (patch)
treee176ab54eaf501bf842832a939f4ceaa59a762d8 /Bugzilla/Install.pm
parentf2ff085f8a2062f935a0116d18975c3c21ec4b64 (diff)
downloadbugzilla-8c3fdaa797bc941aeb07ec8dc36361d6f34ccc98.tar.gz
bugzilla-8c3fdaa797bc941aeb07ec8dc36361d6f34ccc98.tar.xz
add a default security group
Diffstat (limited to 'Bugzilla/Install.pm')
-rw-r--r--Bugzilla/Install.pm15
1 files changed, 13 insertions, 2 deletions
diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm
index 705a8396c..64fc1580c 100644
--- a/Bugzilla/Install.pm
+++ b/Bugzilla/Install.pm
@@ -257,6 +257,17 @@ use constant SYSTEM_GROUPS => (
name => 'bz_can_disable_mfa',
description => 'Can disable MFA when editing users',
},
+ {
+ use_for_bugs => 1,
+ name => 'bz_private',
+ description => 'Private Bug',
+ inherited_by => ['bz_insiders'],
+ },
+ {
+ name => 'bz_insiders',
+ description =>
+ 'Can see private attachments, comments, and bugs (for bugs in bz_private)',
+ },
);
use constant DEFAULT_CLASSIFICATION =>
@@ -311,8 +322,8 @@ sub update_system_groups {
foreach my $definition (SYSTEM_GROUPS) {
my $exists = new Bugzilla::Group({name => $definition->{name}});
if (!$exists) {
- $definition->{isbuggroup} = 0;
- $definition->{silently} = !$editbugs_exists;
+ $definition->{isbuggroup} = delete $definition->{use_for_bugs} // 0,
+ $definition->{silently} = !$editbugs_exists;
my $inherited_by = delete $definition->{inherited_by};
my $created = Bugzilla::Group->create($definition);