Skip to content

Commit

Permalink
Fix create subtask argument order
Browse files Browse the repository at this point in the history
  • Loading branch information
maximilianruesch committed Nov 21, 2023
1 parent 98db6da commit 2cfca33
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion electron/providers/base-provider/BaseProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ export interface IProvider {
createIssue(issue: Issue): Promise<string>
createSubtask(
parentIssueKey: string,
projectId: string,
subtaskSummary: string,
projectId: string,
subtaskIssueTypeId: string
): Promise<{ id: string; key: string }>
getEpicsByProject(projectIdOrKey: string): Promise<Issue[]>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1022,8 +1022,8 @@ export class JiraCloudProvider implements IProvider {

createSubtask(
parentIssueKey: string,
projectId: string,
subtaskSummary: string,
projectId: string,
subtaskIssueTypeId: string
): Promise<{ id: string; key: string }> {
return new Promise((resolve, reject) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -505,8 +505,8 @@ export class JiraServerProvider implements IProvider {

createSubtask(
parentIssueKey: string,
projectId: string,
subtaskSummary: string,
projectId: string,
subtaskIssueTypeId: string
): Promise<{ id: string; key: string }> {
return new Promise((resolve, reject) => {
Expand Down

0 comments on commit 2cfca33

Please sign in to comment.