Skip to content

Commit

Permalink
Fix Apple strategy verifier (#807)
Browse files Browse the repository at this point in the history
The OIDC dsl now takes strings instead of atoms for the `client_authentication_method`  since #800

The Apple dsl was still casting this option to an atom.
  • Loading branch information
miguel-s authored Oct 21, 2024
1 parent 2431efb commit 5b8c0e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ash_authentication/strategies/apple/dsl.ex
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ defmodule AshAuthentication.Strategy.Apple.Dsl do
strategy.default_config([])
|> Enum.map(fn
{:client_authentication_method, method} ->
{:client_authentication_method, String.to_existing_atom(method)}
{:client_authentication_method, method}

{:openid_configuration, config} ->
{:openid_configuration, atomize_keys(config)}
Expand Down

0 comments on commit 5b8c0e6

Please sign in to comment.