From da50891fdb4636e6668c4ea69591e30a1b1944d3 Mon Sep 17 00:00:00 2001 From: colin Date: Sat, 10 Jan 2026 19:07:14 +0800 Subject: [PATCH] fix(identity): Adding base class to resolve object mapping source --- .../LINGYUN/Abp/Identity/IdentityAppServiceBase.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 aspnet-core/modules/identity/LINGYUN.Abp.Identity.Application/LINGYUN/Abp/Identity/IdentityAppServiceBase.cs diff --git a/aspnet-core/modules/identity/LINGYUN.Abp.Identity.Application/LINGYUN/Abp/Identity/IdentityAppServiceBase.cs b/aspnet-core/modules/identity/LINGYUN.Abp.Identity.Application/LINGYUN/Abp/Identity/IdentityAppServiceBase.cs new file mode 100644 index 000000000..bd0785afe --- /dev/null +++ b/aspnet-core/modules/identity/LINGYUN.Abp.Identity.Application/LINGYUN/Abp/Identity/IdentityAppServiceBase.cs @@ -0,0 +1,12 @@ +using Volo.Abp.Application.Services; +using Volo.Abp.Identity.Localization; + +namespace LINGYUN.Abp.Identity; +public abstract class IdentityAppServiceBase : ApplicationService +{ + protected IdentityAppServiceBase() + { + ObjectMapperContext = typeof(AbpIdentityApplicationModule); + LocalizationResource = typeof(IdentityResource); + } +}