Browse Source
Expose new constants for claim request members
pull/1920/head
Dennis Haney
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
9 additions and
0 deletions
-
src/OpenIddict.Abstractions/OpenIddictConstants.cs
|
|
|
@ -155,6 +155,15 @@ public static class OpenIddictConstants |
|
|
|
public const string UserCodeLifetime = "oi_usrc_lft"; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public static class ClaimRequestMembers |
|
|
|
{ |
|
|
|
public const string Essential = "essential"; |
|
|
|
public const string IdToken = "id_token"; |
|
|
|
public const string Userinfo = "userinfo"; |
|
|
|
public const string Value = "value"; |
|
|
|
public const string Values = "values"; |
|
|
|
} |
|
|
|
|
|
|
|
public static class ClientAssertionTypes |
|
|
|
{ |
|
|
|
|