You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
749 B
23 lines
749 B
3 years ago
|
using Sanhe.Abp.Elasticsearch;
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
using Volo.Abp.Json;
|
||
|
using Volo.Abp.Modularity;
|
||
|
|
||
|
namespace Sanhe.Abp.AuditLogging.Elasticsearch
|
||
|
{
|
||
|
[DependsOn(
|
||
|
typeof(AbpAuditLoggingModule),
|
||
|
typeof(AbpElasticsearchModule),
|
||
|
typeof(AbpJsonModule))]
|
||
|
public class AbpAuditLoggingElasticsearchModule : AbpModule
|
||
|
{
|
||
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
||
|
{
|
||
|
var configuration = context.Services.GetConfiguration();
|
||
|
Configure<AbpAuditLoggingElasticsearchOptions>(configuration.GetSection("AuditLogging:Elasticsearch"));
|
||
|
|
||
|
context.Services.AddHostedService<IndexInitializerService>();
|
||
|
}
|
||
|
}
|
||
|
}
|