Skip to content

Commit 7974346

Browse files
committed
INSTALL: activate new plugin
1 parent 5bf6f99 commit 7974346

6 files changed

Lines changed: 10 additions & 4 deletions

File tree

classes/constants.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class Constants {
113113
'CommandSet' => array('ProgressHistoryIndicator2'),
114114
'ServiceContract' => array('ManagementLoadHistoryIndicator'),
115115
'Import_Export' => array('ImportIssueCsv', 'ImportUsers'),
116-
'Admin' => array('MoveIssueTimetracks','TimetrackDetailsIndicator'),
116+
'Admin' => array('MoveIssueTimetracks','TimetrackDetailsIndicator','UserTeamList'),
117117
'EditTeam' => array('MoveIssueTimetracks'),
118118
);
119119

classmap.ser

-803 Bytes
Binary file not shown.

config.ini.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Command = "LoadPerUserIndicator,ProgressHistoryIndicator2"
8686
CommandSet = "ProgressHistoryIndicator2"
8787
ServiceContract = "ManagementLoadHistoryIndicator"
8888
Import_Export = "ImportIssueCsv, ImportUsers"
89-
Admin = "MoveIssueTimetracks,TimetrackDetailsIndicator"
89+
Admin = "MoveIssueTimetracks,TimetrackDetailsIndicator,UserTeamList"
9090
EditTeam = "MoveIssueTimetracks"
9191

9292
[email]

install/codevtt_tables.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,8 @@ INSERT INTO `codev_plugin_table` (`name`, `status`, `domains`, `categories`, `ve
480480
('ReopenedRateIndicator2', 1, 'Team,Project,Command,CommandSet,ServiceContract', 'Quality', '1.0.0', 'Display the bug reopened rate history'),
481481
('StatusHistoryIndicator2', 1, 'Command,Team,User,Project,CommandSet,ServiceContract', 'Quality', '1.0.0', 'Display Issue Status history'),
482482
('TimePerStatusIndicator', 1, 'Task', 'Roadmap', '1.0.0', 'Time allocation by status'),
483-
('TimetrackDetailsIndicator', 1, 'Admin', 'Admin', '1.0.0', 'Display additional info on timetracks');
483+
('TimetrackDetailsIndicator', 1, 'Admin', 'Admin', '1.0.0', 'Display additional info on timetracks'),
484+
('UserTeamList', 1, 'Admin', 'Admin', '1.0.0', 'Display a history of all the teams for a given user');
484485

485486
-- --------------------------------------------------------
486487

tools/release_codevtt.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ CheckArgs ()
6464
if [ 0 -ne $? ] ; then
6565
echo "ERROR: invalid GIT BRANCH: $GIT_BRANCH"
6666
exit 2;
67-
fi
67+
fi
6868
}
6969

7070
f_displayHelp()

tools/update_codevtt.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,11 @@ function update_v16_to_v17() {
524524
$query5 = "UPDATE `codev_config_table` SET `value`='17' WHERE `config_id`='database_version';";
525525
execQuery($query5);
526526

527+
// activate new plugin UserTeamList
528+
$query6 = "INSERT INTO `codev_plugin_table` (`name`, `status`, `domains`, `categories`, `version`, `description`) ".
529+
"VALUES ('UserTeamList', 1, 'Admin', 'Admin', '1.0.0', 'Display a history of all the teams for a given user');";
530+
execQuery($query6);
531+
527532
}
528533

529534
// ======================================================

0 commit comments

Comments
 (0)