diff options
author | Mathieu Parent <math.parent@gmail.com> | 2019-05-15 15:36:17 +0200 |
---|---|---|
committer | Mathieu Parent <math.parent@gmail.com> | 2019-07-03 16:18:05 +0200 |
commit | 5f04d24934770e9aa366aac1400a302232eefd89 (patch) | |
tree | b5d7f0fdce0cc9a925a7ee0c18164101d4b1b01b /lib/api/entities.rb | |
parent | a7892e71714ad0f425547db12f205771dc270da5 (diff) | |
download | gitlab-ce-5f04d24934770e9aa366aac1400a302232eefd89.tar.gz |
Add build_coverage_regex to project API
Diffstat (limited to 'lib/api/entities.rb')
-rw-r--r-- | lib/api/entities.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb index 3bfaf63d912..3eb2d19c624 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -279,6 +279,7 @@ module API project.build_allow_git_fetch ? 'fetch' : 'clone' end expose :build_timeout + expose :build_coverage_regex expose :ci_config_path, if: -> (project, options) { Ability.allowed?(options[:current_user], :download_code, project) } expose :shared_with_groups do |project, options| SharedGroup.represent(project.project_group_links, options) |