From 311490f0f777647e965bd2b4e2d3778fcac487eb Mon Sep 17 00:00:00 2001 From: alma Date: Fri, 23 May 2025 17:14:31 +0200 Subject: [PATCH] W n8n --- app/api/missions/route.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/api/missions/route.ts b/app/api/missions/route.ts index 9eccfed5..5417b345 100644 --- a/app/api/missions/route.ts +++ b/app/api/missions/route.ts @@ -19,6 +19,11 @@ interface MissionCreateInput { profils?: string[]; guardians?: Record; volunteers?: string[]; + creatorId?: string; + config?: { + N8N_API_KEY: string; + MISSION_API_URL: string; + }; logo?: { data: string; name?: string; @@ -28,6 +33,8 @@ interface MissionCreateInput { outlineCollectionId?: string | null; rocketChatChannelId?: string | null; gitRepositoryId?: string | null; + giteaRepositoryUrl?: string | null; + penpotProjectId?: string | null; status?: string; createdAt?: Date; updatedAt?: Date;