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:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-02-27 12:09:01 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-02-27 12:09:01 +0300
commitc72e5ebe9938d315ec598197873e71a80168d40a (patch)
tree439bf5c40aaf774e5a301825af517cb52726f450 /doc/api/feature_flag_specs.md
parentffc43b862df32a590eae874bcbb11109b46dc8be (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/feature_flag_specs.md')
-rw-r--r--doc/api/feature_flag_specs.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/api/feature_flag_specs.md b/doc/api/feature_flag_specs.md
index e41bbea0e66..442d2c2c2d7 100644
--- a/doc/api/feature_flag_specs.md
+++ b/doc/api/feature_flag_specs.md
@@ -16,7 +16,7 @@ For instance, there are two specs, `staging` and `production`, for a feature fla
When you pass `production` as a parameter to this endpoint, the system returns
the `production` feature flag spec only.
-```
+```plaintext
GET /projects/:id/feature_flag_scopes
```
@@ -84,7 +84,7 @@ Example response:
Get all specs of a feature flag.
-```
+```plaintext
GET /projects/:id/feature_flags/:name/scopes
```
@@ -147,7 +147,7 @@ Example response:
Creates a new feature flag spec.
-```
+```plaintext
POST /projects/:id/feature_flags/:name/scopes
```
@@ -194,7 +194,7 @@ Example response:
Gets a single feature flag spec.
-```
+```plaintext
GET /projects/:id/feature_flags/:name/scopes/:environment_scope
```
@@ -230,7 +230,7 @@ Example response:
Updates an existing feature flag spec.
-```
+```plaintext
PUT /projects/:id/feature_flags/:name/scopes/:environment_scope
```
@@ -276,7 +276,7 @@ Example response:
Deletes a feature flag spec.
-```
+```plaintext
DELETE /projects/:id/feature_flags/:name/scopes/:environment_scope
```