Revamp calendar dialog (#158)

Co-authored-by: Camille Moussu <cmoussu@linagora.com>
This commit is contained in:
Camille Moussu
2025-10-07 11:14:08 +02:00
committed by GitHub
parent 2fa1dbb76b
commit 40c383c334
16 changed files with 1306 additions and 132 deletions
+7
View File
@@ -53,3 +53,10 @@ export async function deleteEvent(eventURL: string) {
});
return response;
}
export async function importEventFromFile(id: string, calLink: string) {
const response = await api.post(`api/import`, {
body: JSON.stringify({ fileId: id, target: calLink }),
});
return response;
}