diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-06-30 12:57:26 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-07-06 13:04:36 +0200 |
commit | 073c2a556e145d511e976b92f364b03aa4f3dd7f (patch) | |
tree | ef1d641b1eeec565cf2fd3a923fe95f97fb4c6be /lib/api | |
parent | b27f990de8a1b53974eb9aa0bd6bdde18f93d6db (diff) | |
download | gitlab-ci-073c2a556e145d511e976b92f364b03aa4f3dd7f.tar.gz |
Added support for image and services
Diffstat (limited to 'lib/api')
-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 2f6565a..2f7ca0f 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -13,7 +13,7 @@ module API class Build < Grape::Entity expose :id, :commands, :path, :ref, :sha, :project_id, :repo_url, - :before_sha, :timeout, :allow_git_fetch, :project_name + :before_sha, :timeout, :allow_git_fetch, :project_name, :options expose :variables, using: Variable end |