Skip to content

Commit

Permalink
fix: add issuerURL for apple id (#2565)
Browse files Browse the repository at this point in the history
No issuer url was specified when using the Apple ID provider,
this forced usersers to manually enter it in the provider config.

This PR adds the Apple ID issuer url to the provider simplifying the setup.
  • Loading branch information
Urbansson committed Jul 4, 2022
1 parent 995bd0a commit 2aeb0a2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions selfservice/strategy/oidc/provider_apple.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ func NewProviderApple(
config *Configuration,
reg dependencies,
) *ProviderApple {
config.IssuerURL = "https://appleid.apple.com"
return &ProviderApple{
ProviderGenericOIDC: &ProviderGenericOIDC{
config: config,
Expand Down

0 comments on commit 2aeb0a2

Please sign in to comment.