Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2017-02-14 16:34:36 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2017-02-14 16:34:36 +0300
commitc48539463ff2250058fbfa9d1811977f01313b7c (patch)
tree3acd43bf7142051dfd52a04d427fd61d2a77d53c /doc/api/namespaces.md
parentc867fbab24fcccc2a47ec518e30d8622f66dfa28 (diff)
Expose Namespace#full_path in namespaces API
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'doc/api/namespaces.md')
-rw-r--r--doc/api/namespaces.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/api/namespaces.md b/doc/api/namespaces.md
index 88cd407d792..1d97b5de688 100644
--- a/doc/api/namespaces.md
+++ b/doc/api/namespaces.md
@@ -35,6 +35,12 @@ Example response:
"id": 2,
"path": "group1",
"kind": "group"
+ },
+ {
+ "id": 3,
+ "path": "bar",
+ "kind": "group",
+ "full_path": "foo/bar",
}
]
```
@@ -64,7 +70,8 @@ Example response:
{
"id": 4,
"path": "twitter",
- "kind": "group"
+ "kind": "group",
+ "full_path": "twitter",
}
]
```