mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
3e752a0db1
* Alerting: enable proxying alertmanager calls using the datasource UID * Remove use of datasource ID from the API * Update frontend
12 lines
302 B
Go
12 lines
302 B
Go
package api
|
|
|
|
import "github.com/grafana/grafana/pkg/models"
|
|
|
|
func (hs *HTTPServer) ProxyDataSourceRequest(c *models.ReqContext) {
|
|
hs.DataProxy.ProxyDataSourceRequest(c)
|
|
}
|
|
|
|
func (hs *HTTPServer) ProxyDataSourceRequestWithUID(c *models.ReqContext) {
|
|
hs.DataProxy.ProxyDatasourceRequestWithUID(c, "")
|
|
}
|