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

@@ -20,6 +20,8 @@ const (
Jira = TicketSystem(config.Jira)
// GitHub from GitHub.
GitHub = TicketSystem(config.GitHub)
// GitLab from GitLab.
GitLab = TicketSystem(config.GitLab)
// NoTickets indicates no ticketing system integration.
NoTickets = TicketSystem(config.NoTickets)
)