Skip to content

Commit fe35816

Browse files
committed
Add missing OIDC provider options
1 parent e15e1c2 commit fe35816

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/Components/WebAssembly/WebAssembly.Authentication/src/Options/OidcProviderOptions.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,17 @@ public class OidcProviderOptions
4040
/// </summary>
4141
[JsonPropertyName("post_logout_redirect_uri")]
4242
public string PostLogoutRedirectUri { get; set; }
43+
44+
/// <summary>
45+
/// Gets or sets the response type to use on the authorization flow. The valid values are specified by the identity provider metadata.
46+
/// </summary>
47+
[JsonPropertyName("response_type")]
48+
public string ResponseType { get; set; }
49+
50+
/// <summary>
51+
/// Gets or sets the response mode to use in the authorization flow.
52+
/// </summary>
53+
[JsonPropertyName("response_mode")]
54+
public string ResponseMode { get; set; }
4355
}
4456
}

0 commit comments

Comments
 (0)