Skip to content

Commit

Permalink
Merge pull request #960 from bvicinus/add-project-compliance-frameworks
Browse files Browse the repository at this point in the history
Add project compliance_framework field
  • Loading branch information
svanharmelen committed Oct 19, 2020
2 parents 23e5533 + b8f39da commit 0701099
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions projects.go
Expand Up @@ -106,11 +106,12 @@ type Project struct {
GroupName string `json:"group_name"`
GroupAccessLevel int `json:"group_access_level"`
} `json:"shared_with_groups"`
Statistics *ProjectStatistics `json:"statistics"`
Links *Links `json:"_links,omitempty"`
CIConfigPath string `json:"ci_config_path"`
CIDefaultGitDepth int `json:"ci_default_git_depth"`
CustomAttributes []*CustomAttribute `json:"custom_attributes"`
Statistics *ProjectStatistics `json:"statistics"`
Links *Links `json:"_links,omitempty"`
CIConfigPath string `json:"ci_config_path"`
CIDefaultGitDepth int `json:"ci_default_git_depth"`
CustomAttributes []*CustomAttribute `json:"custom_attributes"`
ComplianceFrameworks []string `json:"compliance_frameworks"`
}

// Repository represents a repository.
Expand Down

0 comments on commit 0701099

Please sign in to comment.