Skip to content

Commit

Permalink
Fix: Ensure the getUser call works
Browse files Browse the repository at this point in the history
Unit tests missing
  • Loading branch information
kitos9112 committed Mar 22, 2022
1 parent 9a1afb5 commit 7a1105f
Show file tree
Hide file tree
Showing 5 changed files with 164 additions and 175 deletions.
27 changes: 14 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,37 +4,38 @@ go 1.17

require (
github.com/sirupsen/logrus v1.8.1
github.com/stretchr/testify v1.7.0
github.com/stretchr/testify v1.7.1
github.com/thomseddon/go-flags v1.4.1-0.20190507184247-a3629c504486
github.com/traefik/traefik/v2 v2.6.1
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a
gopkg.in/square/go-jose.v2 v2.6.0
)

require github.com/coreos/go-oidc/v3 v3.1.0

require (
cloud.google.com/go v0.81.0 // indirect
github.com/containous/alice v0.0.0-20181107144136-d83ebdd94cbd // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/gorilla/context v1.1.1 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/gravitational/trace v0.0.0-20190726142706-a535a178675f // indirect
github.com/jonboulle/clockwork v0.1.0 // indirect
github.com/miekg/dns v1.1.45 // indirect
github.com/gravitational/trace v1.1.18 // indirect
github.com/jonboulle/clockwork v0.2.2 // indirect
github.com/miekg/dns v1.1.47 // indirect
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/traefik/paerser v0.1.4 // indirect
github.com/vulcand/predicate v1.1.0 // indirect
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e // indirect
golang.org/x/mod v0.4.2 // indirect
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
github.com/traefik/paerser v0.1.5 // indirect
github.com/vulcand/predicate v1.2.0 // indirect
golang.org/x/crypto v0.0.0-20220321153916-2c7772ba3064 // indirect
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
golang.org/x/sys v0.0.0-20220319134239-a9b59b0215f8 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
golang.org/x/tools v0.1.6-0.20210726203631-07bc1bf47fb2 // indirect
golang.org/x/tools v0.1.10 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.27.1 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)

Expand Down
Loading

0 comments on commit 7a1105f

Please sign in to comment.