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
+64-1Lines changed: 64 additions & 1 deletion
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
@@ -1070,6 +1071,58 @@ export abstract class IssueSyncManagerBase {
1070
1071
returnissueUpdate
1071
1072
}
1072
1073
1074
+
asyncperformDocumentExternalSync(
1075
+
ctx: MeasureContext,
1076
+
info: DocSyncInfo,
1077
+
previousExternal: IssueExternalData,
1078
+
issueExternal: IssueExternalData,
1079
+
derivedClient: TxOperations
1080
+
): Promise<void>{
1081
+
// 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