Skip to content

Commit

Permalink
Add a constant for the create prompt in OpenIdConnectPrompt class (#2658
Browse files Browse the repository at this point in the history
)

Co-authored-by: joegoldman2 <[email protected]>
  • Loading branch information
joegoldman2 and joegoldman2 authored Jun 26, 2024
1 parent e79c59e commit 279ae11
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ public static class OpenIdConnectPrompt
/// </summary>
public const string None = "none";

/// <summary>
/// Indicates 'create' prompt type see: https://openid.net/specs/openid-connect-prompt-create-1_0.html.
/// </summary>
public const string Create = "create";

/// <summary>
/// Indicates 'login' prompt type see: http://openid.net/specs/openid-connect-core-1_0.html#AuthRequest.
/// </summary>
Expand All @@ -29,4 +34,3 @@ public static class OpenIdConnectPrompt
public const string SelectAccount = "select_account";
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public enum OpenIdConnectRequestType
Authentication,

/// <summary>
/// Indicates a Logout Request see:http://openid.net/specs/openid-connect-frontchannel-1_0.html#RPLogout.
/// Indicates a Logout Request see: http://openid.net/specs/openid-connect-frontchannel-1_0.html#RPLogout.
/// </summary>
Logout,

Expand Down

0 comments on commit 279ae11

Please sign in to comment.