Browse Source

Merge pull request #19903 from abpframework/auto-merge/rel-8-1/2742

Merge branch rel-8.2 with rel-8.1
pull/19904/head
maliming 2 years ago
committed by GitHub
parent
commit
473e788b2f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 11
      docs/en/API/Application-Configuration.md

11
docs/en/API/Application-Configuration.md

@ -55,7 +55,16 @@ namespace Acme.BookStore.Web
}
```
Add your contributor instance to the `AbpApplicationConfigurationOptions`
```csharp
Configure<AbpApplicationConfigurationOptions>(options =>
{
options.Contributors.AddIfNotContains(new MyApplicationConfigurationContributor());
});
```
* `IApplicationConfigurationContributor` defines the `ContributeAsync` method to extend the **application-configuration** endpoint with the specified additional data.
* You can inject services and perform any logic needed to extend the endpoint as you wish.
> Application configuration contributors are automatically discovered by the ABP Framework and executed as a part of the application configuration initialization process.
> Application configuration contributors are executed as a part of the application configuration initialization process.

Loading…
Cancel
Save