From f545c91c34cf0385e4059785528cb93d7b1f473f Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Ballesteros Date: Wed, 20 Nov 2024 10:27:56 +0100 Subject: [PATCH] Update config.ts --- backend/src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/config.ts b/backend/src/config.ts index ea662e59..209c46d8 100644 --- a/backend/src/config.ts +++ b/backend/src/config.ts @@ -38,7 +38,7 @@ export const CALL_S3_BUCKET = process.env.CALL_S3_BUCKET || 'openvidu'; // Parent directory inside the bucket export const CALL_S3_PARENT_DIRECTORY = process.env.CALL_S3_PARENT_DIRECTORY || 'openvidu-call'; // Recording directory inside the parent directory -export const CALL_S3_RECORDING_DIRECTORY = process.env.CALL_S3_RECORDING_FOLDER || 'recordings'; +export const CALL_S3_RECORDING_DIRECTORY = process.env.CALL_S3_RECORDING_DIRECTORY || 'recordings'; export const CALL_S3_SERVICE_ENDPOINT = process.env.CALL_S3_SERVICE_ENDPOINT || undefined; export const CALL_S3_ACCESS_KEY = process.env.CALL_S3_ACCESS_KEY || undefined; export const CALL_S3_SECRET_KEY = process.env.CALL_S3_SECRET_KEY || undefined;