From 042c8d447b39517793e49be44c33c61aa4792e6f Mon Sep 17 00:00:00 2001 From: RohitR311 Date: Mon, 18 Nov 2024 21:38:13 +0530 Subject: [PATCH] feat: add duplicate recording api --- src/api/storage.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api/storage.ts b/src/api/storage.ts index 90ab91af..b4d24b9f 100644 --- a/src/api/storage.ts +++ b/src/api/storage.ts @@ -35,6 +35,7 @@ export const updateRecording = async (id: string, data: { name?: string; limit?: export const duplicateRecording = async (id: string, targetUrl: string): Promise => { try { + console.log("duplicating"); const response = await axios.post(`${apiUrl}/storage/recordings/${id}/duplicate`, { targetUrl, });