diff options
author | wendy0402 <wendykurniawan92@gmail.com> | 2017-02-14 09:28:45 +0700 |
---|---|---|
committer | wendy0402 <wendykurniawan92@gmail.com> | 2017-02-14 09:32:25 +0700 |
commit | 79ce7579bb7dad3dba344893fb20c2f1346c84a0 (patch) | |
tree | 132ae368420580585df9e25fcbac1824b7393a49 /lib/api/entities.rb | |
parent | e5f446b7ca4bc54ffaf527e4c57dea2bee2f79f6 (diff) | |
download | gitlab-ce-79ce7579bb7dad3dba344893fb20c2f1346c84a0.tar.gz |
Make it possible to pass coverage value to commit status API
Diffstat (limited to 'lib/api/entities.rb')
-rw-r--r-- | lib/api/entities.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb index 2a071e649fa..d4234ffe818 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -367,7 +367,7 @@ module API class CommitStatus < Grape::Entity expose :id, :sha, :ref, :status, :name, :target_url, :description, - :created_at, :started_at, :finished_at, :allow_failure + :created_at, :started_at, :finished_at, :allow_failure, :coverage expose :author, using: Entities::UserBasic end |