From 66c00dbf0c5a23399450cfd39278a2d1d7c6d9a6 Mon Sep 17 00:00:00 2001 From: colin Date: Thu, 12 Jun 2025 17:33:29 +0800 Subject: [PATCH] fix(identity-server): Fix the type export error - rename expose services: `IdentityServerLoginModel` --- .../Pages/Account/IdentityServerLoginModel.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aspnet-core/modules/account/LINGYUN.Abp.Account.Web.IdentityServer/Pages/Account/IdentityServerLoginModel.cs b/aspnet-core/modules/account/LINGYUN.Abp.Account.Web.IdentityServer/Pages/Account/IdentityServerLoginModel.cs index dbca7e51a..f62229941 100644 --- a/aspnet-core/modules/account/LINGYUN.Abp.Account.Web.IdentityServer/Pages/Account/IdentityServerLoginModel.cs +++ b/aspnet-core/modules/account/LINGYUN.Abp.Account.Web.IdentityServer/Pages/Account/IdentityServerLoginModel.cs @@ -13,7 +13,6 @@ using System.Linq; using System.Threading.Tasks; using Volo.Abp.Account.Settings; using Volo.Abp.Account.Web; -using Volo.Abp.Account.Web.Pages.Account; using Volo.Abp.DependencyInjection; using Volo.Abp.Identity; using Volo.Abp.IdentityServer.AspNetIdentity; @@ -30,7 +29,7 @@ namespace LINGYUN.Abp.Account.Web.IdentityServer.Pages.Account [Dependency(ReplaceServices = true)] [ExposeServices( typeof(LINGYUN.Abp.Account.Web.Pages.Account.LoginModel), - typeof(IdentityServerSupportedLoginModel))] + typeof(IdentityServerLoginModel))] public class IdentityServerLoginModel : LINGYUN.Abp.Account.Web.Pages.Account.LoginModel { protected IIdentityServerInteractionService Interaction { get; }