Update Authorization.md

pull/13250/head
maliming 3 years ago committed by GitHub
parent 05e7796bda
commit 899a194aa6
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