fix: alert list links did not work, changed dashboardUri to Url, this is breaking api change in alert api (#10756)

This commit is contained in:
Torkel Ödegaard
2018-02-05 09:42:41 +01:00
committed by GitHub
parent d379aa3815
commit 07fa2f1722
8 changed files with 11 additions and 11 deletions
+4 -4
View File
@@ -62,7 +62,7 @@ Content-Type: application/json
}
"newStateDate": "2016-12-25",
"executionError": "",
"dashboardUri": "http://grafana.com/dashboard/db/sensors"
"url": "http://grafana.com/dashboard/db/sensors"
}
]
```
@@ -94,7 +94,7 @@ Content-Type: application/json
"state": "alerting",
"newStateDate": "2016-12-25",
"executionError": "",
"dashboardUri": "http://grafana.com/dashboard/db/sensors"
"url": "http://grafana.com/dashboard/db/sensors"
}
```
@@ -196,7 +196,7 @@ Content-Type: application/json
## Create alert notification
You can find the full list of [supported notifers](/alerting/notifications/#all-supported-notifier) at the alert notifiers page.
You can find the full list of [supported notifers](/alerting/notifications/#all-supported-notifier) at the alert notifiers page.
`POST /api/alert-notifications`
@@ -294,4 +294,4 @@ Content-Type: application/json
{
"message": "Notification deleted"
}
```
```