mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
cd724d74aa
* Use RoleType from org package * Move to identity package and re-export from authn * Replace usage of top level functions for identity Co-authored-by: Misi <mgyongyosi@users.noreply.github.com>
12 lines
541 B
Go
12 lines
541 B
Go
package authn
|
|
|
|
import "github.com/grafana/grafana/pkg/util/errutil"
|
|
|
|
var (
|
|
ErrTokenNeedsRotation = errutil.Unauthorized("session.token.rotate", errutil.WithLogLevel(errutil.LevelDebug))
|
|
ErrUnsupportedClient = errutil.BadRequest("auth.client.unsupported")
|
|
ErrClientNotConfigured = errutil.BadRequest("auth.client.notConfigured")
|
|
ErrUnsupportedIdentity = errutil.NotImplemented("auth.identity.unsupported")
|
|
ErrExpiredAccessToken = errutil.Unauthorized("oauth.expired-token", errutil.WithPublicMessage("OAuth access token expired"))
|
|
)
|