Browse Source

Merge pull request #22764 from abpframework/auto-merge/rel-9-2/3689

Merge branch dev with rel-9.2
pull/22776/head
maliming 1 year ago
committed by GitHub
parent
commit
7eb7b26d1e
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 14
      docs/en/modules/cms-kit-pro/url-forwarding.md

14
docs/en/modules/cms-kit-pro/url-forwarding.md

@ -37,6 +37,20 @@ You can create new forwardings or update/delete existing ones, in the admin side
![url-forwarding-page](../../images/url-forwarding-page.png)
## Options
### ShortenedUrlCacheOptions
`ShortenedUrlCacheOptions` is used to configure the cache settings for the URL forwarding system. Example:
```csharp
Configure<ShortenedUrlCacheOptions>(options =>
{
options.CacheAllOnStartup = true; // Cache all shortened URLs on startup
});
```
# Internals
## Domain Layer

Loading…
Cancel
Save