Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
5d8aa524
Commit
5d8aa524
authored
Nov 24, 2014
by
Matt Selsky
Committed by
Gervase Markham
Nov 24, 2014
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 317021 - improve description of bz_canusewhine* parameters. r=gerv.
parent
45439b7c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
2 deletions
+15
-2
Install.pm
Bugzilla/Install.pm
+4
-2
DB.pm
Bugzilla/Install/DB.pm
+11
-0
No files found.
Bugzilla/Install.pm
View file @
5d8aa524
...
@@ -133,11 +133,13 @@ use constant SYSTEM_GROUPS => (
...
@@ -133,11 +133,13 @@ use constant SYSTEM_GROUPS => (
},
},
{
{
name
=>
'bz_canusewhineatothers'
,
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'
,
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
# inherited_by means that users in the groups listed below are
# automatically members of bz_canusewhines.
# automatically members of bz_canusewhines.
inherited_by
=>
[
'editbugs'
,
'bz_canusewhineatothers'
],
inherited_by
=>
[
'editbugs'
,
'bz_canusewhineatothers'
],
...
...
Bugzilla/Install/DB.pm
View file @
5d8aa524
...
@@ -729,6 +729,17 @@ sub update_table_definitions {
...
@@ -729,6 +729,17 @@ sub update_table_definitions {
# 2014-11-10 dkl@mozilla.com - Bug 1093928
# 2014-11-10 dkl@mozilla.com - Bug 1093928
$dbh
->
bz_drop_column
(
'longdescs'
,
'is_markdown'
);
$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 #
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################
################################################################
...
...
Дмитрий Никулин
@TheOwl
mentioned in commit
45877e03
·
Oct 20, 2017
mentioned in commit
45877e03
mentioned in commit 45877e03a90ffdd5c21f8a9999375cf14f3aaa12
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment