mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 21:19:28 -06:00
2de72c1c39
* AuthN: Add function to login auth request
9 lines
275 B
Go
9 lines
275 B
Go
package authn
|
|
|
|
import "github.com/grafana/grafana/pkg/util/errutil"
|
|
|
|
var (
|
|
ErrClientNotConfigured = errutil.NewBase(errutil.StatusBadRequest, "auth.client.notConfigured")
|
|
ErrUnsupportedIdentity = errutil.NewBase(errutil.StatusNotImplemented, "auth.identity.unsupported")
|
|
)
|