mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
c6483cd8ed
* Alerting: Refactor API handlers to use web.Bind * lint
36 lines
1.2 KiB
Go
36 lines
1.2 KiB
Go
package api
|
|
|
|
import (
|
|
"github.com/grafana/grafana/pkg/api/response"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
apimodels "github.com/grafana/grafana/pkg/services/ngalert/api/tooling/definitions"
|
|
)
|
|
|
|
// ForkedConfigurationApi always forwards requests to grafana backend
|
|
type ForkedConfigurationApi struct {
|
|
grafana ConfigurationApiService
|
|
}
|
|
|
|
// NewForkedConfiguration creates a new ForkedConfigurationApi instance
|
|
func NewForkedConfiguration(grafana ConfigurationApiService) *ForkedConfigurationApi {
|
|
return &ForkedConfigurationApi{
|
|
grafana: grafana,
|
|
}
|
|
}
|
|
|
|
func (f *ForkedConfigurationApi) forkRouteGetAlertmanagers(c *models.ReqContext) response.Response {
|
|
return f.grafana.RouteGetAlertmanagers(c)
|
|
}
|
|
|
|
func (f *ForkedConfigurationApi) forkRouteGetNGalertConfig(c *models.ReqContext) response.Response {
|
|
return f.grafana.RouteGetNGalertConfig(c)
|
|
}
|
|
|
|
func (f *ForkedConfigurationApi) forkRoutePostNGalertConfig(c *models.ReqContext, body apimodels.PostableNGalertConfig) response.Response {
|
|
return f.grafana.RoutePostNGalertConfig(c, body)
|
|
}
|
|
|
|
func (f *ForkedConfigurationApi) forkRouteDeleteNGalertConfig(c *models.ReqContext) response.Response {
|
|
return f.grafana.RouteDeleteNGalertConfig(c)
|
|
}
|