mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
ddfe2dce74
* split Lotex and Grafana routes * update template to use authorize function for every route
36 lines
1.1 KiB
Go
36 lines
1.1 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 *AdminSrv
|
|
}
|
|
|
|
// NewForkedConfiguration creates a new ForkedConfigurationApi instance
|
|
func NewForkedConfiguration(grafana *AdminSrv) *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)
|
|
}
|