Skip to content

Commit 53d34c9

Browse files
authoredJun 12, 2024··
reactor : Restore GrantType (#724)
1 parent 6264ea8 commit 53d34c9

File tree

1 file changed

+1
-4
lines changed
  • src/BuildingBlocks/Authentication/OpenIdConnect/Masa.BuildingBlocks.Authentication.OpenIdConnect.Models/Constans

1 file changed

+1
-4
lines changed
 

‎src/BuildingBlocks/Authentication/OpenIdConnect/Masa.BuildingBlocks.Authentication.OpenIdConnect.Models/Constans/GrantType.cs

+1-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static class GrantType
2626
[Description("PhoneCode")]
2727
public const string PHONE_CODE = "phone_code";
2828

29-
[Description("LocalPhone")]
29+
[Description("Phone")]
3030
public const string LOCAL_PHONE = "local_phone";
3131

3232
[Description("ThirdPartyIdp")]
@@ -38,9 +38,6 @@ public static class GrantType
3838
[Description("Impersonation")]
3939
public const string IMPERSONATION = "impersonation";
4040

41-
[Description("PhoneNumber")]
42-
public const string PHONE_NUMBER = "phone_number";
43-
4441
private static readonly List<(string, string)> _disallowCombinations = new List<(string, string)>
4542
{
4643
(IMPLICIT, AUTHORIZATION_CODE),

0 commit comments

Comments
 (0)
Please sign in to comment.