mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
10 lines
265 B
Go
10 lines
265 B
Go
|
package social
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
ErrIDTokenNotFound = errors.New("id_token not found")
|
||
|
ErrInvalidBasicRole = errors.New("user does not have a valid basic role")
|
||
|
ErrEmailNotFound = errors.New("error getting user info: no email found in access token")
|
||
|
)
|