mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
feat(api): fixed minor issue with error message when trying to create duplicate datasource, fixes #6164
This commit is contained in:
@@ -22,7 +22,8 @@ const (
|
||||
|
||||
// Typed errors
|
||||
var (
|
||||
ErrDataSourceNotFound = errors.New("Data source not found")
|
||||
ErrDataSourceNotFound = errors.New("Data source not found")
|
||||
ErrDataSourceNameExists = errors.New("Data source with same name already exists")
|
||||
)
|
||||
|
||||
type DsAccess string
|
||||
|
||||
Reference in New Issue
Block a user