diff --git a/aspnet-core/modules/openIddict/LINGYUN.Abp.OpenIddict.Application.Contracts/LINGYUN/Abp/OpenIddict/Applications/OpenIddictApplicationCreateOrUpdateDto.cs b/aspnet-core/modules/openIddict/LINGYUN.Abp.OpenIddict.Application.Contracts/LINGYUN/Abp/OpenIddict/Applications/OpenIddictApplicationCreateOrUpdateDto.cs index c5ce73c54..104e153fb 100644 --- a/aspnet-core/modules/openIddict/LINGYUN.Abp.OpenIddict.Application.Contracts/LINGYUN/Abp/OpenIddict/Applications/OpenIddictApplicationCreateOrUpdateDto.cs +++ b/aspnet-core/modules/openIddict/LINGYUN.Abp.OpenIddict.Application.Contracts/LINGYUN/Abp/OpenIddict/Applications/OpenIddictApplicationCreateOrUpdateDto.cs @@ -42,4 +42,6 @@ public abstract class OpenIddictApplicationCreateOrUpdateDto : ExtensibleObject public string ClientUri { get; set; } public string LogoUri { get; set; } + + public string FrontChannelLogoutUri { get; set; } } diff --git a/aspnet-core/modules/openIddict/LINGYUN.Abp.OpenIddict.Application.Contracts/LINGYUN/Abp/OpenIddict/Applications/OpenIddictApplicationDto.cs b/aspnet-core/modules/openIddict/LINGYUN.Abp.OpenIddict.Application.Contracts/LINGYUN/Abp/OpenIddict/Applications/OpenIddictApplicationDto.cs index 5fa0e8a99..c5401b022 100644 --- a/aspnet-core/modules/openIddict/LINGYUN.Abp.OpenIddict.Application.Contracts/LINGYUN/Abp/OpenIddict/Applications/OpenIddictApplicationDto.cs +++ b/aspnet-core/modules/openIddict/LINGYUN.Abp.OpenIddict.Application.Contracts/LINGYUN/Abp/OpenIddict/Applications/OpenIddictApplicationDto.cs @@ -27,4 +27,5 @@ public class OpenIddictApplicationDto : ExtensibleAuditedEntityDto, IHasCo public string LogoUri { get; set; } public string JsonWebKeySet { get; set; } public string ConcurrencyStamp { get; set; } + public string FrontChannelLogoutUri { get; set; } } diff --git a/aspnet-core/modules/openIddict/LINGYUN.Abp.OpenIddict.Application/LINGYUN/Abp/OpenIddict/Applications/OpenIddictApplicationExtensions.cs b/aspnet-core/modules/openIddict/LINGYUN.Abp.OpenIddict.Application/LINGYUN/Abp/OpenIddict/Applications/OpenIddictApplicationExtensions.cs index 62570fda7..d895736e1 100644 --- a/aspnet-core/modules/openIddict/LINGYUN.Abp.OpenIddict.Application/LINGYUN/Abp/OpenIddict/Applications/OpenIddictApplicationExtensions.cs +++ b/aspnet-core/modules/openIddict/LINGYUN.Abp.OpenIddict.Application/LINGYUN/Abp/OpenIddict/Applications/OpenIddictApplicationExtensions.cs @@ -26,6 +26,7 @@ internal static class OpenIddictApplicationExtensions entity.ClientUri = dto.ClientUri; entity.ClientType = dto.ClientType; entity.LogoUri = dto.LogoUri; + entity.FrontChannelLogoutUri = dto.FrontChannelLogoutUri; TrySetSettings(jsonSerializer, dto, entity); TrySetRequirements(jsonSerializer, dto, entity); @@ -105,6 +106,7 @@ internal static class OpenIddictApplicationExtensions LogoUri = entity.LogoUri, JsonWebKeySet = entity.JsonWebKeySet, ConcurrencyStamp = entity.ConcurrencyStamp, + FrontChannelLogoutUri = entity.FrontChannelLogoutUri, }; var settings = jsonSerializer.DeserializeToDictionary(entity.Settings);