mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 18:36:30 +02:00
12 lines
496 B
Go
12 lines
496 B
Go
package identity
|
|
|
|
import "errors"
|
|
|
|
// ErrRevokeNotImplemented error type when Revoke method is not implemented
|
|
// by an identity provider
|
|
var ErrRevokeNotImplemented = errors.New("internal/identity: revoke not implemented")
|
|
|
|
// ErrSignoutNotImplemented error type when end session is not implemented
|
|
// by an identity provider
|
|
// https://openid.net/specs/openid-connect-frontchannel-1_0.html#RPInitiated
|
|
var ErrSignoutNotImplemented = errors.New("internal/identity: end session not implemented")
|