mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 05:29:42 -06:00
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")
|
||
|
)
|