From b8f39dadf8fbe9e1c37ea67731277573ef1a3a59 Mon Sep 17 00:00:00 2001 From: brandonv Date: Mon, 19 Oct 2020 11:02:06 -0400 Subject: [PATCH] Add project compliance_framework field --- projects.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/projects.go b/projects.go index 6622444cb..bc70a56ca 100644 --- a/projects.go +++ b/projects.go @@ -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.