generated from Brightscout/mattermost-plugin-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MI-1931] Add API to get projects and get tasks (#3)
* [MI-1846]: Added nvmrc file * Modular folder structure * Modular folder structure * [MI-1846]: Base setup * [MI-1846]: Refactored server base setup * [MI-1854]: Implement OAuth to access Azure DevOps services * [MI-1931] Add API to get projects and get tasks * [MI-1931] Self review fixes * [MI-1931] Review fixes 1 * [MI-1931] Self review fix * [MI-1846]: Review fixes * [MI-1931] Review fixes 2 * [MI-1931] Add json error handling * [MI-1931] Add comment to the code * [MI-1931] Add error check * [MI-1846]: Review fixes * [MI-1854]: Review fixes * [MI-1854]: Removed unused config * [MI-1854]: Added logic to verify state * [MI-1931] Run fmt * [MI-1854]: Removed unused configs * [MI-1854]: Review fixes * [MI-1931] Remove unused code * [MI-1931] Correct spelling error * [MI-1931] Correct formatting Co-authored-by: Abhishek Verma <[email protected]> Co-authored-by: Abhishek Verma <[email protected]>
- Loading branch information
1 parent
2a1e24a
commit a52039a
Showing
6 changed files
with
63 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package serializers | ||
|
||
// Error struct to store error codes and error message. | ||
type Error struct { | ||
Code int | ||
Message string | ||
} |