mirror of
https://github.com/Unleash/unleash.git
synced 2025-02-14 00:19:16 +01:00
Adde some prosa for seen-apps #187
This commit is contained in:
parent
e4eeea10dd
commit
47ba9a7892
@ -235,4 +235,50 @@ strategies implemented and seen toogles.
|
||||
"toggle-3"
|
||||
]
|
||||
}
|
||||
```
|
||||
```
|
||||
|
||||
### Seen applications
|
||||
|
||||
`GET http://unleash.host.com/api//client/seen-apps`
|
||||
|
||||
This endpoint gives insight into details about application seen per feature toggle.
|
||||
|
||||
|
||||
```json
|
||||
{
|
||||
"my-toggle": [
|
||||
{
|
||||
"appName": "my-app",
|
||||
"createdAt": "2016-12-28T10:39:24.966Z",
|
||||
"updatedAt": "2017-01-06T15:32:41.932Z",
|
||||
"description": "our main app",
|
||||
"strategies": [
|
||||
"gradualRolloutRandom",
|
||||
"abTest",
|
||||
"default",
|
||||
"betaUser",
|
||||
"userWithId",
|
||||
"byHostName",
|
||||
"gradualRolloutWithSessionId",
|
||||
"gradualRollout",
|
||||
"byRemoteAddr"
|
||||
],
|
||||
"url": "http://example.com",
|
||||
"color": null,
|
||||
"icon": "terrain"
|
||||
},
|
||||
{
|
||||
"appName": "my-other-app",
|
||||
"createdAt": "2016-12-28T10:39:24.966Z",
|
||||
"updatedAt": "2017-01-06T15:32:41.932Z",
|
||||
"description": "our other app",
|
||||
"strategies": [
|
||||
"default",
|
||||
],
|
||||
"url": "http://example.com",
|
||||
"color": null,
|
||||
"icon": "desktop"
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user