mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 20:24:18 -06:00
5fec6cc4f5
* API: Fix response status when snapshots are not found * API: Fix response status when snapshot key is empty * Apply suggestions from code review
8 lines
230 B
Go
8 lines
230 B
Go
package dashboardsnapshots
|
|
|
|
import (
|
|
"github.com/grafana/grafana/pkg/util/errutil"
|
|
)
|
|
|
|
var ErrBaseNotFound = errutil.NewBase(errutil.StatusNotFound, "dashboardsnapshots.not-found", errutil.WithPublicMessage("Snapshot not found"))
|