Browse Source
Merge pull request #1193 from colinin/fix-webhook-timeout
fix(webhook): 修复未能返回超时时间字段
pull/1211/head
yx lin
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
3 additions and
0 deletions
-
aspnet-core/modules/webhooks/LINGYUN.Abp.WebhooksManagement.Application/LINGYUN/Abp/WebhooksManagement/Extensions/WebhookSubscriptionExtensions.cs
-
aspnet-core/modules/webhooks/LINGYUN.Abp.WebhooksManagement.Domain.Shared/LINGYUN/Abp/WebhooksManagement/Localization/Resources/en.json
-
aspnet-core/modules/webhooks/LINGYUN.Abp.WebhooksManagement.Domain.Shared/LINGYUN/Abp/WebhooksManagement/Localization/Resources/zh-Hans.json
|
|
|
@ -20,6 +20,7 @@ public static class WebhookSubscriptionExtensions |
|
|
|
CreatorId = webhookSubscription.CreatorId, |
|
|
|
Description = webhookSubscription.Description, |
|
|
|
ConcurrencyStamp = webhookSubscription.ConcurrencyStamp, |
|
|
|
TimeoutDuration = webhookSubscription.TimeoutDuration, |
|
|
|
}; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -32,6 +32,7 @@ |
|
|
|
"SelectedItems": "Selected items", |
|
|
|
"SelectedItemsFormat": "Selected {0}", |
|
|
|
"ItemWillBeResendMessageWithFormat": "{0} will be resend.", |
|
|
|
"SuccessfullySent": "Successfully Sent", |
|
|
|
"DisplayName:Name": "Name", |
|
|
|
"DisplayName:DisplayName": "Display Name", |
|
|
|
"DisplayName:Description": "Description", |
|
|
|
|
|
|
|
@ -32,6 +32,7 @@ |
|
|
|
"SelectedItems": "已选择项目", |
|
|
|
"SelectedItemsFormat": "已选择 {0}", |
|
|
|
"ItemWillBeResendMessageWithFormat": "{0} 将要重新发送.", |
|
|
|
"SuccessfullySent": "发送成功", |
|
|
|
"DisplayName:Name": "名称", |
|
|
|
"DisplayName:DisplayName": "显示名称", |
|
|
|
"DisplayName:Description": "描述", |
|
|
|
|