]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 317021 - improve description of bz_canusewhine* parameters. r=gerv.
authorMatt Selsky <selsky@columbia.edu>
Mon, 24 Nov 2014 16:55:30 +0000 (16:55 +0000)
committerGervase Markham <gerv@gerv.net>
Mon, 24 Nov 2014 16:55:30 +0000 (16:55 +0000)
Bugzilla/Install.pm
Bugzilla/Install/DB.pm

index 07bc9d6c3bc67c69027df9a6e0c4ed525274a292..9b7becdcbcee6f5ee3357d9c4dc858b137e7069e 100644 (file)
@@ -133,11 +133,13 @@ use constant SYSTEM_GROUPS => (
     },
     {
         name         => 'bz_canusewhineatothers',
-        description  => 'Can configure whine reports for other users',
+        description  => 'Can configure queries and schedules for periodic'
+            . ' reports to be run and sent via email to other users and groups',
     },
     {
         name         => 'bz_canusewhines',
-        description  => 'User can configure whine reports for self',
+        description  => 'Can configure queries and schedules for periodic'
+            . ' reports to be run and sent via email to themselves',
         # inherited_by means that users in the groups listed below are
         # automatically members of bz_canusewhines.
         inherited_by => ['editbugs', 'bz_canusewhineatothers'],
index 96f14ec0ff69bab35a5b602a48a27e84c300b03d..50daa3d462fcc5032ac91c296c3ea8d5cecb54ea 100644 (file)
@@ -729,6 +729,17 @@ sub update_table_definitions {
     # 2014-11-10 dkl@mozilla.com - Bug 1093928
     $dbh->bz_drop_column('longdescs', 'is_markdown');
 
+    $dbh->do('UPDATE groups SET description = ? WHERE name = ? and description = ?',
+             undef,
+             "Can configure queries and schedules for periodic reports to be run and sent via email to other users and groups",
+             "bz_canusewhineatothers",
+             "Can configure whine reports for other users");
+    $dbh->do('UPDATE groups SET description = ? WHERE name = ? and description = ?',
+             undef,
+             "Can configure queries and schedules for periodic reports to be run and sent via email to themselves",
+             "bz_canusewhines",
+             "User can configure whine reports for self");
+
     ################################################################
     # New --TABLE-- changes should go *** A B O V E *** this point #
     ################################################################