diff options
author | Thiago Presa <tpresa@gitlab.com> | 2019-05-30 06:10:52 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axil@gitlab.com> | 2019-05-30 06:10:52 +0000 |
commit | 383176fbf58b2b203c741b4dbf82b8a69d4f2626 (patch) | |
tree | e14ced281e6590ee1dae30ff87d94752332e3383 /doc/api | |
parent | 7f5c9e19ce6f605feaa1ccbb5c8c69e4c159796b (diff) | |
download | gitlab-ce-383176fbf58b2b203c741b4dbf82b8a69d4f2626.tar.gz |
Fix highest role docs
The docs for the highest_role field was incorrectly added to the
/users endpoint. This commit adds it to the /users/:id
Diffstat (limited to 'doc/api')
-rw-r--r-- | doc/api/users.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/users.md b/doc/api/users.md index d3e67d3d510..47028c679b8 100644 --- a/doc/api/users.md +++ b/doc/api/users.md @@ -140,8 +140,7 @@ GET /users "can_create_project": true, "two_factor_enabled": true, "external": false, - "private_profile": false, - "highest_role":10 + "private_profile": false } ] ``` @@ -257,7 +256,8 @@ Parameters: "can_create_project": true, "two_factor_enabled": true, "external": false, - "private_profile": false + "private_profile": false, + "highest_role":10 } ``` |