mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
e8e1a0b50b
This reverts commit 55efeb0c02
.
9 lines
222 B
Go
9 lines
222 B
Go
package accesscontrol
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrFixedRolePrefixMissing = errors.New("fixed role should be prefixed with '" + FixedRolePrefix + "'")
|
|
ErrInvalidBuiltinRole = errors.New("built-in role is not valid")
|
|
)
|