Browse Source

Merge pull request #1232 from colinin/fix-expose-services

fix(identity-server): Fix the type export error
pull/1238/head
yx lin 10 months ago
committed by GitHub
parent
commit
22f9e7d01b
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      aspnet-core/modules/account/LINGYUN.Abp.Account.Web.IdentityServer/Pages/Account/IdentityServerLoginModel.cs

3
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 System.Threading.Tasks;
using Volo.Abp.Account.Settings; using Volo.Abp.Account.Settings;
using Volo.Abp.Account.Web; using Volo.Abp.Account.Web;
using Volo.Abp.Account.Web.Pages.Account;
using Volo.Abp.DependencyInjection; using Volo.Abp.DependencyInjection;
using Volo.Abp.Identity; using Volo.Abp.Identity;
using Volo.Abp.IdentityServer.AspNetIdentity; using Volo.Abp.IdentityServer.AspNetIdentity;
@ -30,7 +29,7 @@ namespace LINGYUN.Abp.Account.Web.IdentityServer.Pages.Account
[Dependency(ReplaceServices = true)] [Dependency(ReplaceServices = true)]
[ExposeServices( [ExposeServices(
typeof(LINGYUN.Abp.Account.Web.Pages.Account.LoginModel), typeof(LINGYUN.Abp.Account.Web.Pages.Account.LoginModel),
typeof(IdentityServerSupportedLoginModel))] typeof(IdentityServerLoginModel))]
public class IdentityServerLoginModel : LINGYUN.Abp.Account.Web.Pages.Account.LoginModel public class IdentityServerLoginModel : LINGYUN.Abp.Account.Web.Pages.Account.LoginModel
{ {
protected IIdentityServerInteractionService Interaction { get; } protected IIdentityServerInteractionService Interaction { get; }

Loading…
Cancel
Save