Skip to content

Commit 0eaaee7

Browse files
committed
fix: full sync jira if due date field changed
1 parent f8246a7 commit 0eaaee7

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

backend/plugins/jira/tasks/epic_extractor.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ func ExtractEpics(subtaskCtx plugin.SubTaskContext) errors.Error {
6464
SubtaskConfig: map[string]any{
6565
"typeMappings": mappings,
6666
"storyPointField": data.Options.ScopeConfig.StoryPointField,
67+
"dueDate": data.Options.ScopeConfig.DueDateField,
6768
},
6869
},
6970
BeforeExtract: func(apiIssue *apiv2models.Issue, stateManager *api.SubtaskStateManager) errors.Error {

backend/plugins/jira/tasks/issue_extractor.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ func ExtractIssues(subtaskCtx plugin.SubTaskContext) errors.Error {
7373
SubtaskConfig: map[string]any{
7474
"typeMappings": mappings,
7575
"storyPointField": data.Options.ScopeConfig.StoryPointField,
76+
"dueDate": data.Options.ScopeConfig.DueDateField,
7677
},
7778
},
7879
BeforeExtract: func(apiIssue *apiv2models.Issue, stateManager *api.SubtaskStateManager) errors.Error {

0 commit comments

Comments
 (0)