Jira API is now fully implemented.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user