mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
17 lines
442 B
Go
17 lines
442 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/grafana/grafana/pkg/api/response"
|
||
|
"github.com/grafana/grafana/pkg/models"
|
||
|
)
|
||
|
|
||
|
func (hs *HTTPServer) AdminRotateDataEncryptionKeys(c *models.ReqContext) response.Response {
|
||
|
if err := hs.SecretsService.RotateDataKeys(c.Req.Context()); err != nil {
|
||
|
return response.Error(http.StatusInternalServerError, "Failed to rotate data key", err)
|
||
|
}
|
||
|
|
||
|
return response.Respond(http.StatusNoContent, "")
|
||
|
}
|