diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-05-28 00:08:37 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-05-28 00:08:37 +0000 |
commit | 6985123d928aa3b5061f5ed19208407b550ab4e8 (patch) | |
tree | e990ca2c3c578d06fdcb9c4ae87084e8f68f310b /doc/api/features.md | |
parent | 47579e24f3f9f29d5b8093f54e6958fefd7f2057 (diff) | |
download | gitlab-ce-6985123d928aa3b5061f5ed19208407b550ab4e8.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/features.md')
-rw-r--r-- | doc/api/features.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/features.md b/doc/api/features.md index 03f1663b987..ca040e9b0fa 100644 --- a/doc/api/features.md +++ b/doc/api/features.md @@ -16,7 +16,7 @@ GET /features ``` ```shell -curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/features +curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/features" ``` Example response: @@ -80,7 +80,7 @@ Note that you can enable or disable a feature for a `feature_group`, a `user`, a `group`, and a `project` in a single API call. ```shell -curl --data "value=30" --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/api/v4/features/new_library +curl --data "value=30" --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/features/new_library" ``` Example response: |