Skip to content

Commit

Permalink
Merge branch 'dev' into validate-issuer-security-key-result
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/Microsoft.IdentityModel.Tokens/Validation/Validators.IssuerSecurityKey.cs
  • Loading branch information
iNinja committed Jun 27, 2024
2 parents 0a85920 + 279ae11 commit cb03537
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 cb03537

Please sign in to comment.