mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-28 18:06:34 +02:00
* identity: add support for verifying access and identity tokens * allow overriding with policy option * authenticate: add verify endpoints * wip * implement session creation * add verify test * implement idp token login * fix tests * add pr permission * make session ids route-specific * rename method * add test * add access token test * test for newUserFromIDPClaims * more tests * make the session id per-idp * use type for * add test * remove nil checks
9 lines
271 B
Go
9 lines
271 B
Go
package identity
|
|
|
|
import "github.com/pomerium/pomerium/pkg/identity/identity"
|
|
|
|
// re-exported errors
|
|
var (
|
|
ErrVerifyAccessTokenNotSupported = identity.ErrVerifyAccessTokenNotSupported
|
|
ErrVerifyIdentityTokenNotSupported = identity.ErrVerifyIdentityTokenNotSupported
|
|
)
|