We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
webhook_notifications
1 parent d27d396 commit f3c8cf7Copy full SHA for f3c8cf7
exporter/importables.go
@@ -598,9 +598,9 @@ var resourcesMap map[string]importable = map[string]importable{
598
return reflect.DeepEqual(*js.Tasks[taskIndex].EmailNotifications,
599
sdk_jobs.TaskEmailNotifications{})
600
}
601
- case "webhooks_notifications":
602
- if js.Tasks[taskIndex].EmailNotifications != nil {
603
- return reflect.DeepEqual(*js.Tasks[taskIndex].EmailNotifications,
+ case "webhook_notifications":
+ if js.Tasks[taskIndex].WebhookNotifications != nil {
+ return reflect.DeepEqual(*js.Tasks[taskIndex].WebhookNotifications,
604
sdk_jobs.WebhookNotifications{})
605
606
0 commit comments