forked from mystiq/dex
Merge pull request #213 from ericchiang/naming_fix
Godeps: update github.com/coreos/go-oidc/oidc to fix field name
This commit is contained in:
commit
c95a769ad6
2 changed files with 6 additions and 6 deletions
10
Godeps/Godeps.json
generated
10
Godeps/Godeps.json
generated
|
@ -21,23 +21,23 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/coreos/go-oidc/http",
|
"ImportPath": "github.com/coreos/go-oidc/http",
|
||||||
"Rev": "024cdeee09d02fb439eb55bc422e582ac115615b"
|
"Rev": "48e2a9be3918af3299c4b390399346447eefea22"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/coreos/go-oidc/jose",
|
"ImportPath": "github.com/coreos/go-oidc/jose",
|
||||||
"Rev": "024cdeee09d02fb439eb55bc422e582ac115615b"
|
"Rev": "48e2a9be3918af3299c4b390399346447eefea22"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/coreos/go-oidc/key",
|
"ImportPath": "github.com/coreos/go-oidc/key",
|
||||||
"Rev": "024cdeee09d02fb439eb55bc422e582ac115615b"
|
"Rev": "48e2a9be3918af3299c4b390399346447eefea22"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/coreos/go-oidc/oauth2",
|
"ImportPath": "github.com/coreos/go-oidc/oauth2",
|
||||||
"Rev": "024cdeee09d02fb439eb55bc422e582ac115615b"
|
"Rev": "48e2a9be3918af3299c4b390399346447eefea22"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/coreos/go-oidc/oidc",
|
"ImportPath": "github.com/coreos/go-oidc/oidc",
|
||||||
"Rev": "024cdeee09d02fb439eb55bc422e582ac115615b"
|
"Rev": "48e2a9be3918af3299c4b390399346447eefea22"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ImportPath": "github.com/coreos/pkg/capnslog",
|
"ImportPath": "github.com/coreos/pkg/capnslog",
|
||||||
|
|
2
Godeps/_workspace/src/github.com/coreos/go-oidc/oidc/provider.go
generated
vendored
2
Godeps/_workspace/src/github.com/coreos/go-oidc/oidc/provider.go
generated
vendored
|
@ -36,7 +36,7 @@ type ProviderConfig struct {
|
||||||
ResponseTypesSupported []string `json:"response_types_supported"`
|
ResponseTypesSupported []string `json:"response_types_supported"`
|
||||||
GrantTypesSupported []string `json:"grant_types_supported"`
|
GrantTypesSupported []string `json:"grant_types_supported"`
|
||||||
SubjectTypesSupported []string `json:"subject_types_supported"`
|
SubjectTypesSupported []string `json:"subject_types_supported"`
|
||||||
IDTokenAlgValuesSupported []string `json:"id_token_alg_values_supported"`
|
IDTokenAlgValuesSupported []string `json:"id_token_signing_alg_values_supported"`
|
||||||
TokenEndpointAuthMethodsSupported []string `json:"token_endpoint_auth_methods_supported"`
|
TokenEndpointAuthMethodsSupported []string `json:"token_endpoint_auth_methods_supported"`
|
||||||
ExpiresAt time.Time `json:"-"`
|
ExpiresAt time.Time `json:"-"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue