summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMathieu Parent <math.parent@gmail.com>2018-12-27 15:37:46 +0100
committerMathieu Parent <math.parent@gmail.com>2019-01-15 21:09:05 +0100
commit542e26fec0e1730436b4dc04a408139de2b91fd0 (patch)
treecdb07c88809c172cfc0bc6f0f08539c8674e09e2 /doc
parent6d6c2e95dd8c813a9646c6289589957749bd4b0c (diff)
downloadgitlab-ce-542e26fec0e1730436b4dc04a408139de2b91fd0.tar.gz
Add group full path to project's shared_with_groups
Diffstat (limited to 'doc')
-rw-r--r--doc/api/groups.md2
-rw-r--r--doc/api/projects.md2
2 files changed, 4 insertions, 0 deletions
diff --git a/doc/api/groups.md b/doc/api/groups.md
index 2d9114c40ea..907b443d355 100644
--- a/doc/api/groups.md
+++ b/doc/api/groups.md
@@ -357,12 +357,14 @@ Example response:
{
"group_id": 4,
"group_name": "Twitter",
+ "group_full_path": "twitter",
"group_access_level": 30,
"expires_at": null
},
{
"group_id": 3,
"group_name": "Gitlab Org",
+ "group_full_path": "gitlab-org",
"group_access_level": 10,
"expires_at": "2018-08-14"
}
diff --git a/doc/api/projects.md b/doc/api/projects.md
index 538cd34de43..1296b435792 100644
--- a/doc/api/projects.md
+++ b/doc/api/projects.md
@@ -525,11 +525,13 @@ GET /projects/:id
{
"group_id": 4,
"group_name": "Twitter",
+ "group_full_path": "twitter",
"group_access_level": 30
},
{
"group_id": 3,
"group_name": "Gitlab Org",
+ "group_full_path": "gitlab-org",
"group_access_level": 10
}
],