mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 08:05:43 -06:00
* 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"))
|