Browse Source
Merge pull request #12963 from afresh/afresh/fix-identity.md
Fix Identity.md
pull/12974/head
Enis Necipoglu
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
4 additions and
4 deletions
-
docs/en/Modules/Identity.md
-
docs/zh-Hans/Modules/Identity.md
|
|
|
@ -105,8 +105,8 @@ You can inject and use `IdentitySecurityLogManager` or `ISecurityLogManager` to |
|
|
|
```cs |
|
|
|
await IdentitySecurityLogManager.SaveAsync(new IdentitySecurityLogContext() |
|
|
|
{ |
|
|
|
Identity = "IdentityServer"; |
|
|
|
Action = "ChangePassword"; |
|
|
|
Identity = "IdentityServer", |
|
|
|
Action = "ChangePassword" |
|
|
|
}); |
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
@ -105,8 +105,8 @@ |
|
|
|
```cs |
|
|
|
await IdentitySecurityLogManager.SaveAsync(new IdentitySecurityLogContext() |
|
|
|
{ |
|
|
|
Identity = "IdentityServer"; |
|
|
|
Action = "ChangePassword"; |
|
|
|
Identity = "IdentityServer", |
|
|
|
Action = "ChangePassword" |
|
|
|
}); |
|
|
|
``` |
|
|
|
|
|
|
|
|