diff options
author | Michel Courtine <michaK@ivoltage.me> | 2015-02-12 09:56:55 +0100 |
---|---|---|
committer | Michel Courtine <michaK@ivoltage.me> | 2015-02-12 09:56:55 +0100 |
commit | 76256521e42df08cb7ecbd22bcde55c11a97290f (patch) | |
tree | 373dce82ec708fed88946d9ccc3b25868457383e /lib/api/entities.rb | |
parent | 02a1d95fb2503106443feaea82a20ac472c40ecf (diff) | |
download | gitlab-ci-76256521e42df08cb7ecbd22bcde55c11a97290f.tar.gz |
project jobs api: exposed active, build_branches, build_tags, tags. Implemented tests and updated documentation
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 bc21e22..8c4b3c1 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -29,7 +29,7 @@ module API end class Job < Grape::Entity - expose :id, :name, :commands + expose :id, :project_id, :commands, :active, :name, :build_branches, :build_tags, :tags end end end |