Commit 0f07922f19dee37849e32b6a829087b4f98c2809
1 parent
0bda2d5d
Exists in
master
and in
4 other branches
'namespace' should be exposed via the API
Since it's now an integral part of the project name, it should be visible via the API.
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
lib/api/entities.rb
... | ... | @@ -22,6 +22,7 @@ module Gitlab |
22 | 22 | expose :owner, using: Entities::UserBasic |
23 | 23 | expose :private_flag, as: :private |
24 | 24 | expose :issues_enabled, :merge_requests_enabled, :wall_enabled, :wiki_enabled, :created_at |
25 | + expose :namespace | |
25 | 26 | end |
26 | 27 | |
27 | 28 | class ProjectMember < UserBasic | ... | ... |