Browse Source

Fix alphabetical ordering of UnmetAuthenticationRequirements constant

Co-authored-by: kevinchalet <6998306+kevinchalet@users.noreply.github.com>
pull/2425/head
copilot-swe-agent[bot] 1 month ago
parent
commit
a2d40bb1cc
  1. 2
      src/OpenIddict.Abstractions/OpenIddictConstants.cs

2
src/OpenIddict.Abstractions/OpenIddictConstants.cs

@ -242,10 +242,10 @@ public static class OpenIddictConstants
public const string SlowDown = "slow_down";
public const string TemporarilyUnavailable = "temporarily_unavailable";
public const string UnauthorizedClient = "unauthorized_client";
public const string UnmetAuthenticationRequirements = "unmet_authentication_requirements";
public const string UnsupportedGrantType = "unsupported_grant_type";
public const string UnsupportedResponseType = "unsupported_response_type";
public const string UnsupportedTokenType = "unsupported_token_type";
public const string UnmetAuthenticationRequirements = "unmet_authentication_requirements";
}
public static class GrantTypes

Loading…
Cancel
Save