diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-03-10 17:59:51 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-03-10 18:08:36 +0100 |
commit | 8ba3f387cd09504cd0ca357b3557d705d044633b (patch) | |
tree | f99c82609dc493ba3c288a81a5ba152ae85d947e /Bugzilla/Config | |
parent | 2056caa180f907c6e5727954547dfd928cf6a360 (diff) | |
download | bugzilla-8ba3f387cd09504cd0ca357b3557d705d044633b.tar.gz bugzilla-8ba3f387cd09504cd0ca357b3557d705d044633b.tar.xz |
initial changes, no templates
Diffstat (limited to 'Bugzilla/Config')
-rw-r--r-- | Bugzilla/Config/GroupSecurity.pm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Bugzilla/Config/GroupSecurity.pm b/Bugzilla/Config/GroupSecurity.pm index 68c852fe6..c1d2faac1 100644 --- a/Bugzilla/Config/GroupSecurity.pm +++ b/Bugzilla/Config/GroupSecurity.pm @@ -84,6 +84,32 @@ sub get_param_list { name => 'strict_isolation', type => 'b', default => 0 + }, + { + name => 'always_filleable_groups', + type => 'l', + default => join(", ", qw( + addons-security + bugzilla-security + client-services-security + consulting + core-security + finance + infra + infrasec + l20n-security + marketing-private + mozilla-confidential + mozilla-employee-confidential + mozilla-foundation-confidential + mozilla-engagement + mozilla-messaging-confidential + partner-confidential + payments-confidential + tamarin-security + websites-security + webtools-security + )), } ); return @param_list; |