diff options
author | wurblzap%gmail.com <> | 2006-07-14 03:07:57 +0000 |
---|---|---|
committer | wurblzap%gmail.com <> | 2006-07-14 03:07:57 +0000 |
commit | f0c7611262b3948e72e8a18a036569a78f3b51f2 (patch) | |
tree | 54b0e146d4f8fd3c466002728261c895d7709034 /Bugzilla/Config | |
parent | 09495a118b165d60d17780a8623318c19d6ffae6 (diff) | |
download | bugs-f0c7611262b3948e72e8a18a036569a78f3b51f2.tar bugs-f0c7611262b3948e72e8a18a036569a78f3b51f2.tar.gz bugs-f0c7611262b3948e72e8a18a036569a78f3b51f2.tar.bz2 bugs-f0c7611262b3948e72e8a18a036569a78f3b51f2.tar.xz bugs-f0c7611262b3948e72e8a18a036569a78f3b51f2.zip |
Bug 69000: Permit a stored query to be marked "shared" and accessible by other users.
Patch by Marc Schumann <wurblzap@gmail.com>,
r=vladd, a=myk
Diffstat (limited to 'Bugzilla/Config')
-rw-r--r-- | Bugzilla/Config/GroupSecurity.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Bugzilla/Config/GroupSecurity.pm b/Bugzilla/Config/GroupSecurity.pm index 0235a8cb1..1dee703d0 100644 --- a/Bugzilla/Config/GroupSecurity.pm +++ b/Bugzilla/Config/GroupSecurity.pm @@ -79,6 +79,14 @@ sub get_param_list { }, { + name => 'querysharegroup', + type => 's', + choices => \&_get_all_group_names, + default => 'editbugs', + checker => \&check_group + }, + + { name => 'usevisibilitygroups', type => 'b', default => 0 |