Skip to content

Commit

Permalink
feat: add BitbucketIssueState enum
Browse files Browse the repository at this point in the history
  • Loading branch information
adelkahomolova committed Jan 10, 2020
1 parent 4bd72eb commit f46cfc1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/services/git/IVCSService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,14 @@ export enum BitbucketPullRequestState {
declined = 'DECLINED',
superseded = 'SUPERSEDED',
}

export enum BitbucketIssueState {
new = 'new',
open = 'open',
resolved = 'resolved',
onHold = 'on hold',
invalid = 'invalid',
duplicate = 'duplicate',
wontfiw = 'wontfix',
closed = 'closed',
}

0 comments on commit f46cfc1

Please sign in to comment.