You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: services/github/pod-github/src/sync/issueBase.ts
+60-3
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,7 @@ import {
69
69
errorToObj,
70
70
getCreateStatus,
71
71
getType,
72
+
guessStatus,
72
73
isGHWriteAllowed
73
74
}from'./utils'
74
75
@@ -1075,6 +1076,51 @@ export abstract class IssueSyncManagerBase {
1075
1076
returnissueUpdate
1076
1077
}
1077
1078
1079
+
asyncperformDocumentExternalSync(
1080
+
ctx: MeasureContext,
1081
+
info: DocSyncInfo,
1082
+
previousExternal: IssueExternalData,
1083
+
issueExternal: IssueExternalData,
1084
+
derivedClient: TxOperations
1085
+
): Promise<void>{
1086
+
// TODO: Since Github integeration need to be re-written to use cards, so this is quick fix to not loose data in case of external sync while service was offline.
0 commit comments