Merge pull request #13251 from abpframework/auto-merge/rel-5-3/1179

Merge branch dev with rel-5.3
pull/13242/head^2
maliming 3 years ago committed by GitHub
commit 4ef4573a7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -459,6 +459,15 @@ public static class CurrentUserExtensions
}
```
> If you use Identity Server please add your claims to `RequestedClaims` of `AbpClaimsServiceOptions`.
```csharp
Configure<AbpClaimsServiceOptions>(options =>
{
options.RequestedClaims.AddRange(new[]{ "SocialSecurityNumber" });
});
```
## See Also
* [Permission Management Module](Modules/Permission-Management.md)

Loading…
Cancel
Save