diff options
author | Cristian Medina <cabkarian@gmail.com> | 2015-02-05 01:42:34 +0000 |
---|---|---|
committer | Cristian Medina <cabkarian@gmail.com> | 2015-04-03 04:35:12 -0400 |
commit | f04549056806d2bcb63441ebdffe1032711e83c8 (patch) | |
tree | 545321b096d5c627b741a1f62a2c8cf85e086707 /lib/api | |
parent | 0d0042d27481d31027a10edb2ba3a184bff5075a (diff) | |
download | gitlab-ce-f04549056806d2bcb63441ebdffe1032711e83c8.tar.gz |
Modified lib/api/entities.rb to expose Project class tag_list property to the API
Updated projects.md to show tag_list field when performing GETs
Updated projects_spec.rb to include check for tag_list key in project list
Added changes to the CHANGELOG
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 489be210784..51cb934616b 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -46,7 +46,7 @@ module API end class Project < Grape::Entity - expose :id, :description, :default_branch + expose :id, :description, :default_branch, :tag_list expose :public?, as: :public expose :archived?, as: :archived expose :visibility_level, :ssh_url_to_repo, :http_url_to_repo, :web_url |