Skip to content

Commit

Permalink
Merge pull request #77 from GibbonEdu/v1.5.00
Browse files Browse the repository at this point in the history
V1.5.01
  • Loading branch information
raynichc authored Mar 10, 2021
2 parents 72090f4 + 53b6eea commit ba1df5d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
6 changes: 6 additions & 0 deletions Help Desk/CHANGEDB.php
Original file line number Diff line number Diff line change
Expand Up @@ -364,3 +364,9 @@
INSERT INTO `helpDeskGroupDepartment` (`groupDepartmentID`, `groupID`, `departmentID`) SELECT NULL, helpDeskTechGroups.groupID, helpDeskTechGroups.departmentID FROM helpDeskTechGroups WHERE helpDeskTechGroups.departmentID IS NOT NULL;end
ALTER TABLE `helpDeskTechGroups` DROP COLUMN `departmentID`;end
";

//v1.5.01
$count++;
$sql[$count][0]="1.5.01";
$sql[$count][1]="
";
6 changes: 5 additions & 1 deletion Help Desk/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
CHANGELOG
=========

v1.5.01
-------
Fixed install bug relating to default tech groups.

v1.5.00
-------
Allowed Technician Groups to have multiple departments
Allowed Technician Groups to have multiple departments.

v1.4.20
-------
Expand Down
8 changes: 4 additions & 4 deletions Help Desk/manifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
$entryURL="issues_view.php";
$type="Additional";
$category="Other";
$version="1.5.00";
$version="1.5.01";
$author="Ray Clark, Ashton Power & Adrien Tremblay";
$url="https://github.com/GibbonEdu/module-helpDesk";

Expand Down Expand Up @@ -116,10 +116,10 @@
PRIMARY KEY (`subcategoryID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8";

$moduleTables[$tables++]="INSERT INTO `helpDeskTechGroups` (`groupID`, `groupName`, `viewIssue`, `viewIssueStatus`, `assignIssue`, `acceptIssue`, `resolveIssue`, `createIssueForOther`, `fullAccess`, `reassignIssue`, `reincarnateIssue`, `departmentID`)
$moduleTables[$tables++]="INSERT INTO `helpDeskTechGroups` (`groupID`, `groupName`, `viewIssue`, `viewIssueStatus`, `assignIssue`, `acceptIssue`, `resolveIssue`, `createIssueForOther`, `fullAccess`, `reassignIssue`, `reincarnateIssue`)
VALUES
(NULL, 'Head Technician', 1, 'All', 1, 1, 1, 1, 1, 1, 1, NULL),
(NULL, 'Technician', 1, 'All', 0, 1, 1, 1, 0, 0, 1, NULL)";
(NULL, 'Head Technician', 1, 'All', 1, 1, 1, 1, 1, 1, 1),
(NULL, 'Technician', 1, 'All', 0, 1, 1, 1, 0, 0, 1)";

$moduleTables[$tables++]="INSERT INTO `gibbonSetting` (`gibbonSettingID`, `scope`, `name`, `nameDisplay`, `description`, `value`)
VALUES
Expand Down
2 changes: 1 addition & 1 deletion Help Desk/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
/**
* Sets version information
*/
$moduleVersion='1.5.00';
$moduleVersion='1.5.01';

?>

0 comments on commit ba1df5d

Please sign in to comment.