Skip to content

Commit

Permalink
Add 'Sprint' issue type (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
aryabokon authored Oct 23, 2023
1 parent a8f6ac8 commit fcc0cba
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@ public enum IssueTypeEnum {
HOTFIX("Hotfix"),
DOCUMENTATION("Documentation"),
EPIC("Epic"),
PRODUCT_CARD("Product Card");
PRODUCT_CARD("Product Card"),
SPRINT("Sprint");



private String name;
private final String name;

IssueTypeEnum(String issueTypeName) {
this.name = issueTypeName;
Expand Down

0 comments on commit fcc0cba

Please sign in to comment.