Jira API is now fully implemented.

This commit is contained in:
Jamie Greunbaum
2024-06-01 03:04:07 -04:00
parent d763eb48fe
commit c5c0c192cb
6 changed files with 416 additions and 24 deletions
+3 -3
View File
@@ -254,11 +254,11 @@ static func load_bug_markers(marker_root:Node, bug_list:Array) -> void:
var bug_status : BugMarker.BugStatus = BugMarker.BugStatus.NEUTRAL
if bug_info.resolution == BugbotServerGiteaAPI.RESOLVED_TAG:
if bug_info.resolution == BugbotServerAPI.RESOLVED_TAG:
bug_status = BugMarker.BugStatus.RESOLVED
elif bug_info.resolution == BugbotServerGiteaAPI.IN_PROGRESS_TAG:
elif bug_info.resolution == BugbotServerAPI.IN_PROGRESS_TAG:
bug_status = BugMarker.BugStatus.IN_PROGRESS
elif bug_info.resolution == BugbotServerGiteaAPI.UNRESOLVED_TAG:
elif bug_info.resolution == BugbotServerAPI.UNRESOLVED_TAG:
bug_status = BugMarker.BugStatus.UNRESOLVED
var bug_marker : BugMarker = bug_marker_preload.instantiate() as BugMarker