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:
authorAchilleas Pipinellis <axilleas@axilleas.me>2016-02-05 14:25:16 +0300
committerTomasz Maczukin <tomasz@maczukin.pl>2016-02-19 15:18:47 +0300
commit97c88966bb9594449a519d377203206dd6416868 (patch)
tree584deca292e56f9b9721e92555cf09d737ed5ae2 /doc/api/runners.md
parentf21b15d5f5af150ef39f338a4d4afb495402311a (diff)
GET /runners is for specific runners only
[ci skip]
Diffstat (limited to 'doc/api/runners.md')
-rw-r--r--doc/api/runners.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/runners.md b/doc/api/runners.md
index 926c46eb8ed..aa58c4431b8 100644
--- a/doc/api/runners.md
+++ b/doc/api/runners.md
@@ -2,7 +2,7 @@
## List owned runners
-Get a list of runners available to the user.
+Get a list of specific runners available to the user.
```
GET /runners
@@ -11,7 +11,7 @@ GET /runners?scope=active
| Attribute | Type | Required | Description |
|-----------|---------|----------|---------------------|
-| `scope` | string | no | The scope of runners to show, one of: `specific`, `shared`, `active`, `paused`, `online`; showing all runners if none provided |
+| `scope` | string | no | The scope of specific runners to show, one of: `active`, `paused`, `online`; showing all runners if none provided |
```
curl -H "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/runners"
@@ -45,7 +45,7 @@ is restricted to users with `admin` privileges.
```
GET /runners/all
-GET /runners?scope=online
+GET /runners/all?scope=online
```
| Attribute | Type | Required | Description |