Browse Source

Update OpenIddict.md

pull/15454/head
maliming 3 years ago
committed by GitHub
parent
commit
60d5b7c148
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      docs/en/Modules/OpenIddict.md

4
docs/en/Modules/OpenIddict.md

@ -299,12 +299,12 @@ PreConfigure<AbpOpenIddictAspNetCoreOptions>(options =>
The background task that automatically removes orphaned tokens/authorizations. This can be configured by `TokenCleanupOptions` to manage it.
`TokenCleanupOptions` can be configured in the `PreConfigureServices` method of your OpenIddict [module](https://docs.abp.io/en/abp/latest/Module-Development-Basics).
`TokenCleanupOptions` can be configured in the `ConfigureServices` method of your OpenIddict [module](https://docs.abp.io/en/abp/latest/Module-Development-Basics).
Example:
```csharp
PreConfigure<TokenCleanupOptions>(options =>
Configure<TokenCleanupOptions>(options =>
{
//Set options here...
});

Loading…
Cancel
Save