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:
committed by
Justin McCarthy
parent
cd89840164
commit
ce5c4c3a4a
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user