diff options
author | Achilleas Pipinellis <axil@gitlab.com> | 2018-02-14 17:36:20 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axil@gitlab.com> | 2018-02-14 17:36:20 +0000 |
commit | dd633bc1888453a07474d045eca91a9e66302ce0 (patch) | |
tree | 879d982d6b4ba86ca1dd7f686d5a902a5b6dea39 /doc/api | |
parent | 0a0f337c5661eb7a76dfdc49dcecc3406fcfd1b7 (diff) | |
parent | 4460863bd7612a7566a6d60b7d2bd1353b88986d (diff) | |
download | gitlab-ce-dd633bc1888453a07474d045eca91a9e66302ce0.tar.gz |
Merge branch 'update-namespaces-api-docs' into 'master'
Make parent_id field integer/null value instead of string
See merge request gitlab-org/gitlab-ce!17085
Diffstat (limited to 'doc/api')
-rw-r--r-- | doc/api/namespaces.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/api/namespaces.md b/doc/api/namespaces.md index 25cae5ce1f9..1f0dc700640 100644 --- a/doc/api/namespaces.md +++ b/doc/api/namespaces.md @@ -39,7 +39,7 @@ Example response: "path": "group1", "kind": "group", "full_path": "group1", - "parent_id": "null", + "parent_id": null, "members_count_with_descendants": 2 }, { @@ -48,7 +48,7 @@ Example response: "path": "bar", "kind": "group", "full_path": "foo/bar", - "parent_id": "9", + "parent_id": 9, "members_count_with_descendants": 5 } ] @@ -84,7 +84,7 @@ Example response: "path": "twitter", "kind": "group", "full_path": "twitter", - "parent_id": "null", + "parent_id": null, "members_count_with_descendants": 2 } ] @@ -117,7 +117,7 @@ Example response: "path": "group1", "kind": "group", "full_path": "group1", - "parent_id": "null", + "parent_id": null, "members_count_with_descendants": 2 } ``` @@ -137,7 +137,7 @@ Example response: "path": "group1", "kind": "group", "full_path": "group1", - "parent_id": "null", + "parent_id": null, "members_count_with_descendants": 2 } ``` |