811307c46b
Identity: remove GetTypedID (#91745)
(cherry picked from commit bcfb66b416)
Co-authored-by: Karl Persson <kalle.persson@grafana.com>
15 lines
418 B
Go
15 lines
418 B
Go
package identity
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/grafana/grafana/pkg/apimachinery/errutil"
|
|
)
|
|
|
|
var (
|
|
ErrInvalidIDType = errutil.BadRequest("auth.identity.invalid-id-type")
|
|
ErrInvalidTypedID = errutil.BadRequest("auth.identity.invalid-typed-id")
|
|
ErrNotIntIdentifier = errors.New("identifier is not an int64")
|
|
ErrIdentifierNotInitialized = errors.New("identifier is not initialized")
|
|
)
|