diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-05-31 15:23:43 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-05-31 15:23:43 +0300 |
commit | c530c57092097c0b57b16fac2a454c9bcb0c1b2b (patch) | |
tree | a483d91cb5bbbc30404661e4016a012ec01679b4 /lib | |
parent | 9a92b2efdc420c137157fc67538594e3d881952b (diff) | |
download | gitlab-ci-c530c57092097c0b57b16fac2a454c9bcb0c1b2b.tar.gz |
Remove repo reading logic from project. GitLab CI does not store repos any more
Diffstat (limited to 'lib')
-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 fdbc29b..ce36939 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -1,7 +1,7 @@ module API module Entities class Build < Grape::Entity - expose :id, :commands, :path, :ref, :sha + expose :id, :commands, :path, :ref, :sha, :project_id, :repo_url end end end |