-
-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Verified (confirmed) provider support (#24)
* fix missing claim id and empty xsrf token * add confirmed provider #23 * add minimal docks for confirmed provider * add redirect to from param in confirmed provider * more docks about confirmed * rename confirm provider to verify * update deps * use gravatar for email in verif provider * simplify email hasher * update linter version * switch to github source for linter * switch to travis to go v1.12 * test with failed avatar saver
- Loading branch information
Showing
14 changed files
with
833 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
module github.com/go-pkgz/auth | ||
|
||
require ( | ||
cloud.google.com/go v0.34.0 // indirect | ||
github.com/boltdb/bolt v1.3.1 // indirect | ||
github.com/coreos/bbolt v1.3.0 | ||
cloud.google.com/go v0.40.0 // indirect | ||
github.com/coreos/bbolt v1.3.3 | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible | ||
github.com/globalsign/mgo v0.0.0-20181015135952-eeefdecb41b8 | ||
github.com/go-pkgz/mongo v1.0.0 | ||
github.com/go-pkgz/rest v1.2.0 | ||
github.com/go-pkgz/lgr v0.6.2 // indirect | ||
github.com/go-pkgz/mongo v1.1.2 | ||
github.com/go-pkgz/rest v1.4.1 | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/nullrocks/identicon v0.0.0-20180626043057-7875f45b0022 | ||
github.com/pkg/errors v0.8.1 | ||
github.com/stretchr/testify v1.3.0 | ||
golang.org/x/image v0.0.0-20181116024801-cd38e8056d9b | ||
golang.org/x/net v0.0.0-20190107210223-45ffb0cd1ba0 // indirect | ||
golang.org/x/oauth2 v0.0.0-20181203162652-d668ce993890 | ||
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4 // indirect | ||
golang.org/x/sys v0.0.0-20190109145017-48ac38b7c8cb // indirect | ||
google.golang.org/appengine v1.4.0 // indirect | ||
go.etcd.io/bbolt v1.3.3 // indirect | ||
golang.org/x/image v0.0.0-20190523035834-f03afa92d3ff | ||
golang.org/x/net v0.0.0-20190611141213-3f473d35a33a // indirect | ||
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 | ||
golang.org/x/sys v0.0.0-20190610200419-93c9922d18ae // indirect | ||
google.golang.org/appengine v1.6.1 // indirect | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
) |
Oops, something went wrong.