mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
27 lines
1.0 KiB
Go
27 lines
1.0 KiB
Go
package user
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/grafana/grafana/pkg/apimachinery/errutil"
|
|
)
|
|
|
|
var (
|
|
ErrCaseInsensitive = errors.New("case insensitive conflict")
|
|
ErrUserNotFound = errors.New("user not found")
|
|
ErrUserAlreadyExists = errors.New("user already exists")
|
|
ErrLastGrafanaAdmin = errors.New("cannot remove last grafana admin")
|
|
ErrProtectedUser = errors.New("cannot adopt protected user")
|
|
ErrNoUniqueID = errors.New("identifying id not found")
|
|
ErrLastSeenUpToDate = errors.New("last seen is already up to date")
|
|
ErrUpdateInvalidID = errors.New("unable to update invalid id")
|
|
)
|
|
|
|
var (
|
|
ErrEmailConflict = errutil.Conflict("user.email-conflict", errutil.WithPublicMessage("Email is already being used"))
|
|
ErrEmptyUsernameAndEmail = errutil.BadRequest(
|
|
"user.empty-username-and-email", errutil.WithPublicMessage("Need to specify either username or email"),
|
|
)
|
|
ErrPasswordMissmatch = errutil.BadRequest("user.password-missmatch", errutil.WithPublicMessage("Invalid old password"))
|
|
)
|