1
0
mirror of https://github.com/strongdm/comply synced 2025-12-06 06:14:09 +00:00

Add gitlab issue integration (#51)

* Add gitlab issue integration

* Clean up gitlab issue integration
This commit is contained in:
Mason Hensley
2018-07-20 19:45:20 -05:00
committed by Justin McCarthy
parent cd89840164
commit ce5c4c3a4a
9 changed files with 287 additions and 56 deletions

View File

@@ -16,6 +16,7 @@ var dockerAvailable, pandocAvailable bool
const (
Jira = "jira"
GitHub = "github"
GitLab = "gitlab"
NoTickets = "none"
)
@@ -115,6 +116,8 @@ func (p *Project) TicketSystem() (string, error) {
return GitHub, nil
case Jira:
return Jira, nil
case GitLab:
return GitLab, nil
case NoTickets:
return NoTickets, nil
default: