Browse Source
Merge pull request #17841 from abpframework/liangshiwei/account-social-logins
Add Picture claim
pull/17843/head
Engincan VESKE
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
0 deletions
-
framework/src/Volo.Abp.Security/Volo/Abp/Security/Claims/AbpClaimTypes.cs
|
|
|
@ -87,4 +87,9 @@ public static class AbpClaimTypes |
|
|
|
/// Default: "impersonator_username".
|
|
|
|
/// </summary>
|
|
|
|
public static string ImpersonatorUserName { get; set; } = "impersonator_username"; |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Default: "picture".
|
|
|
|
/// </summary>
|
|
|
|
public static string Picture { get; set; } = "picture"; |
|
|
|
} |
|
|
|
|