Optional jobId webhook URL templating

This commit is contained in:
Stefan Terdell 2024-07-07 15:11:45 +02:00
parent fcedcccf2d
commit 188fe56203

View File

@ -2,7 +2,7 @@ import { supabase_service } from "./supabase";
export const callWebhook = async (teamId: string, jobId: string,data: any) => {
try {
const selfHostedUrl = process.env.SELF_HOSTED_WEBHOOK_URL;
const selfHostedUrl = process.env.SELF_HOSTED_WEBHOOK_URL?.replace("{{JOB_ID}}", jobId);
const useDbAuthentication = process.env.USE_DB_AUTHENTICATION === 'true';
let webhookUrl = selfHostedUrl;