mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-06 12:52:53 +02:00
internal/identity: implement github provider support (#582)
Co-authored-by: Bobby DeSimone <bobbydesimone@gmail.com>
This commit is contained in:
parent
789068e27a
commit
ae4204d42b
9 changed files with 294 additions and 2 deletions
7
internal/identity/errors.go
Normal file
7
internal/identity/errors.go
Normal file
|
@ -0,0 +1,7 @@
|
|||
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")
|
Loading…
Add table
Add a link
Reference in a new issue