mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 21:52:43 +08:00
Plugins: Add signature wildcard globbing for dedicated private plugin type (#52163)
* it's glob time * add more tests * fix warn log * support new sig type
This commit is contained in:
@ -176,8 +176,9 @@ const (
|
||||
type SignatureType string
|
||||
|
||||
const (
|
||||
GrafanaSignature SignatureType = "grafana"
|
||||
PrivateSignature SignatureType = "private"
|
||||
GrafanaSignature SignatureType = "grafana"
|
||||
PrivateSignature SignatureType = "private"
|
||||
PrivateGlobSignature SignatureType = "private-glob"
|
||||
)
|
||||
|
||||
type PluginFiles map[string]struct{}
|
||||
|
Reference in New Issue
Block a user