mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
31 lines
858 B
Go
31 lines
858 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/grafana/grafana/pkg/models"
|
||
|
)
|
||
|
|
||
|
func (server *HTTPServer) AdminProvisioningReloadDasboards(c *models.ReqContext) Response {
|
||
|
err := server.ProvisioningService.ProvisionDashboards()
|
||
|
if err != nil && err != context.Canceled {
|
||
|
return Error(500, "", err)
|
||
|
}
|
||
|
return Success("Dashboards config reloaded")
|
||
|
}
|
||
|
|
||
|
func (server *HTTPServer) AdminProvisioningReloadDatasources(c *models.ReqContext) Response {
|
||
|
err := server.ProvisioningService.ProvisionDatasources()
|
||
|
if err != nil {
|
||
|
return Error(500, "", err)
|
||
|
}
|
||
|
return Success("Datasources config reloaded")
|
||
|
}
|
||
|
|
||
|
func (server *HTTPServer) AdminProvisioningReloadNotifications(c *models.ReqContext) Response {
|
||
|
err := server.ProvisioningService.ProvisionNotifications()
|
||
|
if err != nil {
|
||
|
return Error(500, "", err)
|
||
|
}
|
||
|
return Success("Notifications config reloaded")
|
||
|
}
|