mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 03:34:15 -06:00
f1b2c750e5
* WIP: intial structure * Refactor: adds create library element endpoint * Feature: adds delete library element * wip * Refactor: adds get api * Refactor: adds get all api * Refactor: adds patch api * Refactor: changes to library_element_connection * Refactor: add get connections api * wip: in the middle of refactor * wip * Refactor: consolidating both api:s * Refactor: points front end to library elements api * Tests: Fixes broken test * Fix: fixes delete library elements in folder and adds tests * Refactor: changes order of tabs in manage folder * Refactor: fixes so link does not cover whole card * Update pkg/services/libraryelements/libraryelements.go Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com> * Update pkg/services/libraryelements/libraryelements_permissions_test.go Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com> * Update pkg/services/libraryelements/database.go Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com> * Chore: changes after PR comments * Update libraryelements.go * Chore: updates after PR comments Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
13 lines
481 B
Go
13 lines
481 B
Go
package librarypanels
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
// errLibraryPanelHeaderUIDMissing is an error for when a library panel header is missing the uid property.
|
|
errLibraryPanelHeaderUIDMissing = errors.New("library panel header is missing required property uid")
|
|
// errLibraryPanelHeaderNameMissing is an error for when a library panel header is missing the name property.
|
|
errLibraryPanelHeaderNameMissing = errors.New("library panel header is missing required property name")
|
|
)
|