diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-10-14 21:10:38 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-12-07 00:27:57 +0100 |
commit | fba8176ed56c92410e972bbced00eb9183f68369 (patch) | |
tree | 4f96883238992b1c180b16c207c61214758f0d25 | |
parent | 8c3fdaa797bc941aeb07ec8dc36361d6f34ccc98 (diff) | |
download | bugzilla-fba8176ed56c92410e972bbced00eb9183f68369.tar.gz bugzilla-fba8176ed56c92410e972bbced00eb9183f68369.tar.xz |
re-order
-rw-r--r-- | Bugzilla/Install.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm index 64fc1580c..3009b33ff 100644 --- a/Bugzilla/Install.pm +++ b/Bugzilla/Install.pm @@ -258,16 +258,16 @@ use constant SYSTEM_GROUPS => ( description => 'Can disable MFA when editing users', }, { + name => 'bz_insiders', + description => + 'Can see private attachments, comments, and bugs (for bugs in bz_private)', + }, + { 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 => |