Browse Source
Merge pull request #13251 from abpframework/auto-merge/rel-5-3/1179
Merge branch dev with rel-5.3
pull/13253/head
maliming
4 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
-
docs/en/Authorization.md
|
|
@ -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 |
|
|
## See Also |
|
|
|
|
|
|
|
|
* [Permission Management Module](Modules/Permission-Management.md) |
|
|
* [Permission Management Module](Modules/Permission-Management.md) |
|
|
|