summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2024-06-13 16:00:34 -0600
committermo khan <mo@mokhan.ca>2024-06-13 16:00:34 -0600
commit2e5b5606660002c70e4f3b86c7f98dee540ca61b (patch)
treea5a0cfaa25774b654122019f337d5148e60c5954
parenta60c5d00d7fc77906fbf7a7dcda3153d539701db (diff)
Add each issue type
-rw-r--r--pkg/gitlab/issue.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/gitlab/issue.go b/pkg/gitlab/issue.go
index a3e94b9..995f149 100644
--- a/pkg/gitlab/issue.go
+++ b/pkg/gitlab/issue.go
@@ -18,6 +18,9 @@ const (
const (
IssueTypeIncident IssueType = "incident"
+ IssueTypeIssue IssueType = "issue"
+ IssueTypeTask IssueType = "task"
+ IssueTypeTestCase IssueType = "test_case"
)
type Issue struct {