1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-09 07:45:22 +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

@ -7,10 +7,10 @@ import { buildUrl } from './build-url';
import { Webhook, WebhookType } from './types';
interface CreateWebhookPayload {
resourceId: string;
environmentId: EnvironmentId;
registryId?: RegistryId;
webhookType: WebhookType;
ResourceId: string;
EndpointID: EnvironmentId;
RegistryId?: RegistryId;
WebhookType: WebhookType;
}
export async function createWebhook(payload: CreateWebhookPayload) {