Skip to content

Commit

Permalink
Revert default value of RequestUriParameterSupported to treat it in a…
Browse files Browse the repository at this point in the history
…nother issue
  • Loading branch information
joegoldman2 authored and brentschmaltz committed Nov 6, 2023
1 parent f6a6504 commit 6c616b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ public OpenIdConnectConfiguration(string json)
#if NET6_0_OR_GREATER
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
#endif
public bool RequestUriParameterSupported { get; set; } = true;
public bool RequestUriParameterSupported { get; set; }

/// <summary>
/// Gets or sets the 'require_request_uri_registration'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public void Defaults()
Assert.False(configuration.RequestParameterSupported);
Assert.NotNull(configuration.ResponseModesSupported);
Assert.NotNull(configuration.ResponseTypesSupported);
Assert.True(configuration.RequestUriParameterSupported);
Assert.False(configuration.RequestUriParameterSupported);
Assert.False(configuration.RequireRequestUriRegistration);
Assert.NotNull(configuration.ScopesSupported);
Assert.NotNull(configuration.SigningKeys);
Expand Down

0 comments on commit 6c616b6

Please sign in to comment.