Revision c7c640d903f4dfc2cc9b685ada1587ce4ae4e4be authored by Joe Blubaugh on 13 October 2022, 02:24:00 UTC, committed by GitHub on 13 October 2022, 02:24:00 UTC
The email notifier was incorrectly handling Windows filepaths. This is
fixed by using the `path/filepath` package.
1 parent 254bb0c
Raw File
accesscontrol.go
package licensing

import "github.com/grafana/grafana/pkg/services/accesscontrol"

const (
	ActionRead        = "licensing:read"
	ActionUpdate      = "licensing:write"
	ActionDelete      = "licensing:delete"
	ActionReportsRead = "licensing.reports:read"
)

// PageAccess defines permissions that grant access to the licensing and stats page
var PageAccess = accesscontrol.EvalAny(
	accesscontrol.EvalPermission(ActionRead),
	accesscontrol.EvalPermission(accesscontrol.ActionServerStatsRead),
)
back to top