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.
28 lines
1.0 KiB
28 lines
1.0 KiB
3 years ago
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
using Volo.Abp.AspNetCore.Mvc.Localization;
|
||
|
using Volo.Abp.Identity.Localization;
|
||
|
using Volo.Abp.Modularity;
|
||
|
|
||
|
namespace Sanhe.Abp.Identity
|
||
|
{
|
||
|
[DependsOn(
|
||
|
typeof(Volo.Abp.Identity.AbpIdentityHttpApiModule),
|
||
|
typeof(AbpIdentityApplicationContractsModule))]
|
||
|
public class AbpIdentityHttpApiModule : AbpModule
|
||
|
{
|
||
|
public override void PreConfigureServices(ServiceConfigurationContext context)
|
||
|
{
|
||
|
PreConfigure<AbpMvcDataAnnotationsLocalizationOptions>(options =>
|
||
|
{
|
||
|
options.AddAssemblyResource(typeof(IdentityResource), typeof(AbpIdentityApplicationContractsModule).Assembly);
|
||
|
options.AddAssemblyResource(typeof(IdentityResource), typeof(Volo.Abp.Identity.AbpIdentityApplicationContractsModule).Assembly);
|
||
|
});
|
||
|
|
||
|
PreConfigure<IMvcBuilder>(mvcBuilder =>
|
||
|
{
|
||
|
mvcBuilder.AddApplicationPartIfNotExists(typeof(AbpIdentityHttpApiModule).Assembly);
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
}
|