Skip to content
Snippets Groups Projects
Unverified Commit 3514b724 authored by Alessio Caiazza's avatar Alessio Caiazza Committed by Alessio Caiazza
Browse files

Add status attribute to runner api entity

parent 5e0143a8
No related branches found
No related tags found
No related merge requests found
---
title: Add online attribute to runner api entity
title: Add online and status attribute to runner api entity
merge_request: 11750
author: Alessio Caiazza
author:
type: added
Loading
Loading
@@ -31,7 +31,8 @@ Example response:
"id": 6,
"is_shared": false,
"name": null,
"online": true
"online": true,
"status": "online"
},
{
"active": true,
Loading
Loading
@@ -39,7 +40,8 @@ Example response:
"id": 8,
"is_shared": false,
"name": null,
"online": false
"online": false,
"status": "offline"
}
]
```
Loading
Loading
@@ -72,7 +74,8 @@ Example response:
"id": 1,
"is_shared": true,
"name": null,
"online": true
"online": true,
"status": "online"
},
{
"active": true,
Loading
Loading
@@ -81,6 +84,7 @@ Example response:
"is_shared": true,
"name": null,
"online": false
"status": "offline"
},
{
"active": true,
Loading
Loading
@@ -89,6 +93,7 @@ Example response:
"is_shared": false,
"name": null,
"online": true
"status": "paused"
},
{
"active": true,
Loading
Loading
@@ -96,7 +101,8 @@ Example response:
"id": 8,
"is_shared": false,
"name": null,
"online": false
"online": false,
"status": "offline"
}
]
```
Loading
Loading
@@ -129,6 +135,7 @@ Example response:
"contacted_at": "2016-01-25T16:39:48.066Z",
"name": null,
"online": true,
"status": "online",
"platform": null,
"projects": [
{
Loading
Loading
@@ -184,6 +191,7 @@ Example response:
"contacted_at": "2016-01-25T16:39:48.066Z",
"name": null,
"online": true,
"status": "online",
"platform": null,
"projects": [
{
Loading
Loading
@@ -336,7 +344,8 @@ Example response:
"id": 8,
"is_shared": false,
"name": null,
"online": false
"online": false,
"status": "offline"
},
{
"active": true,
Loading
Loading
@@ -345,6 +354,7 @@ Example response:
"is_shared": true,
"name": null,
"online": true
"status": "paused"
}
]
```
Loading
Loading
@@ -375,7 +385,8 @@ Example response:
"id": 9,
"is_shared": false,
"name": null,
"online": true
"online": true,
"status": "online"
}
```
 
Loading
Loading
Loading
Loading
@@ -863,6 +863,7 @@ module API
expose :is_shared
expose :name
expose :online?, as: :online
expose :status
end
 
class RunnerDetails < Runner
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment