1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-22 14:59:41 +02:00

fix(container): Unable to create container with webhook EE-6313 (#10619)

This commit is contained in:
cmeng 2023-11-17 14:35:47 +13:00 committed by GitHub
parent 0b5b8971b1
commit fffc7b364e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View file

@ -313,10 +313,10 @@ async function createContainerWebhook(
}
await createWebhook({
resourceId: containerId,
environmentId: environment.Id,
registryId,
webhookType: WebhookType.DockerContainer,
ResourceId: containerId,
EndpointID: environment.Id,
RegistryId: registryId,
WebhookType: WebhookType.DockerContainer,
});
}