Browse Source

fix(webhook): 修复未能返回超时时间字段

pull/1193/head
colin 9 months ago
parent
commit
f53a3dcbdf
  1. 1
      aspnet-core/modules/webhooks/LINGYUN.Abp.WebhooksManagement.Application/LINGYUN/Abp/WebhooksManagement/Extensions/WebhookSubscriptionExtensions.cs
  2. 1
      aspnet-core/modules/webhooks/LINGYUN.Abp.WebhooksManagement.Domain.Shared/LINGYUN/Abp/WebhooksManagement/Localization/Resources/en.json
  3. 1
      aspnet-core/modules/webhooks/LINGYUN.Abp.WebhooksManagement.Domain.Shared/LINGYUN/Abp/WebhooksManagement/Localization/Resources/zh-Hans.json

1
aspnet-core/modules/webhooks/LINGYUN.Abp.WebhooksManagement.Application/LINGYUN/Abp/WebhooksManagement/Extensions/WebhookSubscriptionExtensions.cs

@ -20,6 +20,7 @@ public static class WebhookSubscriptionExtensions
CreatorId = webhookSubscription.CreatorId, CreatorId = webhookSubscription.CreatorId,
Description = webhookSubscription.Description, Description = webhookSubscription.Description,
ConcurrencyStamp = webhookSubscription.ConcurrencyStamp, ConcurrencyStamp = webhookSubscription.ConcurrencyStamp,
TimeoutDuration = webhookSubscription.TimeoutDuration,
}; };
} }

1
aspnet-core/modules/webhooks/LINGYUN.Abp.WebhooksManagement.Domain.Shared/LINGYUN/Abp/WebhooksManagement/Localization/Resources/en.json

@ -32,6 +32,7 @@
"SelectedItems": "Selected items", "SelectedItems": "Selected items",
"SelectedItemsFormat": "Selected {0}", "SelectedItemsFormat": "Selected {0}",
"ItemWillBeResendMessageWithFormat": "{0} will be resend.", "ItemWillBeResendMessageWithFormat": "{0} will be resend.",
"SuccessfullySent": "Successfully Sent",
"DisplayName:Name": "Name", "DisplayName:Name": "Name",
"DisplayName:DisplayName": "Display Name", "DisplayName:DisplayName": "Display Name",
"DisplayName:Description": "Description", "DisplayName:Description": "Description",

1
aspnet-core/modules/webhooks/LINGYUN.Abp.WebhooksManagement.Domain.Shared/LINGYUN/Abp/WebhooksManagement/Localization/Resources/zh-Hans.json

@ -32,6 +32,7 @@
"SelectedItems": "已选择项目", "SelectedItems": "已选择项目",
"SelectedItemsFormat": "已选择 {0}", "SelectedItemsFormat": "已选择 {0}",
"ItemWillBeResendMessageWithFormat": "{0} 将要重新发送.", "ItemWillBeResendMessageWithFormat": "{0} 将要重新发送.",
"SuccessfullySent": "发送成功",
"DisplayName:Name": "名称", "DisplayName:Name": "名称",
"DisplayName:DisplayName": "显示名称", "DisplayName:DisplayName": "显示名称",
"DisplayName:Description": "描述", "DisplayName:Description": "描述",

Loading…
Cancel
Save