Browse Source
Merge pull request #1020 from colinin/fix-host-email
fix(setting-management): fix host email setting
pull/1050/head
yx lin
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
1 deletions
-
aspnet-core/modules/settings/LINGYUN.Abp.SettingManagement.Application/LINGYUN/Abp/SettingManagement/SettingAppService.cs
|
|
|
@ -396,7 +396,8 @@ public class SettingAppService : ApplicationService, ISettingAppService, ISettin |
|
|
|
|
|
|
|
#region 邮件设置
|
|
|
|
|
|
|
|
if (await FeatureChecker.IsEnabledAsync(true, [SettingManagementFeatures.Enable, SettingManagementFeatures.AllowChangingEmailSettings])) |
|
|
|
if (!CurrentTenant.IsAvailable || |
|
|
|
await FeatureChecker.IsEnabledAsync(true, [SettingManagementFeatures.Enable, SettingManagementFeatures.AllowChangingEmailSettings])) |
|
|
|
{ |
|
|
|
var emailSettingGroup = new SettingGroupDto(L["DisplayName:Emailing"], L["Description:Emailing"]); |
|
|
|
|
|
|
|
|