Browse Source
Merge pull request #9039 from abpframework/auto-merge/rel-4-3/386
Merge branch dev with rel-4.3
pull/9043/head
maliming
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
docs/en/Authorization.md
|
|
|
@ -473,7 +473,7 @@ public class SocialSecurityNumberClaimsPrincipalContributor : IAbpClaimsPrincipa |
|
|
|
var socialSecurityNumber = await userService.GetSocialSecurityNumberAsync(userId.Value); |
|
|
|
if (socialSecurityNumber != null) |
|
|
|
{ |
|
|
|
identity.AddOrReplace(new Claim("SocialSecurityNumber", socialSecurityNumber)); |
|
|
|
identity.AddClaim(new Claim("SocialSecurityNumber", socialSecurityNumber)); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
@ -484,4 +484,4 @@ public class SocialSecurityNumberClaimsPrincipalContributor : IAbpClaimsPrincipa |
|
|
|
|
|
|
|
* [Permission Management Module](Modules/Permission-Management.md) |
|
|
|
* [ASP.NET Core MVC / Razor Pages JavaScript Auth API](UI/AspNetCore/JavaScript-API/Auth.md) |
|
|
|
* [Permission Management in Angular UI](UI/Angular/Permission-Management.md) |
|
|
|
* [Permission Management in Angular UI](UI/Angular/Permission-Management.md) |
|
|
|
|