From 17606ba7b8677ef2bde7a0207768c3a791911096 Mon Sep 17 00:00:00 2001 From: Bryce Thorup Date: Sun, 8 Sep 2024 09:31:22 -0600 Subject: [PATCH] take the seatbelt off, remove auto-publish --- action.mjs | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/action.mjs b/action.mjs index c6a4e50..0a529e9 100644 --- a/action.mjs +++ b/action.mjs @@ -58,18 +58,18 @@ class CreateListmonkCampaign { } ); - let campaignId = (await createResponse.json()).data.id; + // let campaignId = (await createResponse.json()).data.id; - await fetch( - `https://mailer.tarupgard.com/api/campaigns/${campaignId}/status`, - { - method: "PUT", - headers: requestHeaders, - body: JSON.stringify({ - status: "running", - }), - } - ); + // await fetch( + // `https://mailer.tarupgard.com/api/campaigns/${campaignId}/status`, + // { + // method: "PUT", + // headers: requestHeaders, + // body: JSON.stringify({ + // status: "running", + // }), + // } + // ); } }