Add Experimental Jira Service Desk Support#86
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new
JiraServiceDeskclass to provide an interface for interacting with Jira Service Desk customer requests via the Atlassian Service Desk REST API. It also adds comprehensive documentation for this new service. Additionally, the pull request removes copyright header comments from all PHP source and configuration files.The most important changes are:
New Jira Service Desk Integration:
JiraServiceDeskclass, enabling creation and retrieval of Service Desk customer requests through the Atlassian Service Desk REST API. This includes methods for creating requests, retrieving requests by issue ID or key, and preparing API request payloads. (src/Services/Jira/JiraServiceDesk.php)JiraServiceDeskclass, including usage examples, method descriptions, required configuration, and permissions. (docs/Services/Jira/JiraServiceDesk.md)Codebase Cleanup:
src/AtlassianHelper.php,src/Helpers/AuthHelper.php,src/Services/Jira/JiraField.php,src/Services/Jira/JiraHelper.php,src/Services/Jira/JiraProject.php, and several others. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17]IDE and Project Configuration:
.idea/copyright/profiles_settings.xmlfile to remove the default copyright profile.These changes collectively add new functionality for Jira Service Desk integration and streamline the codebase by removing redundant copyright notices.