From 82ef11c5cf7f489958c9893489194a87aac37e73 Mon Sep 17 00:00:00 2001 From: Patrick Sachmann <20001160+psachmann@users.noreply.github.com> Date: Tue, 17 Dec 2024 10:07:32 +0100 Subject: [PATCH] removing comments --- src/store/course-room-details.ts | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/src/store/course-room-details.ts b/src/store/course-room-details.ts index 998a413f17..547a608934 100644 --- a/src/store/course-room-details.ts +++ b/src/store/course-room-details.ts @@ -219,22 +219,7 @@ export default class CourseRoomDetailsModule extends VuexModule { responseType: "blob", } ); - // const response = await CoursesApiFactory( - // undefined, - // "v3", - // $axios - // ).courseControllerExportCourse( - // this.roomData.roomId, - // exportSettings.version, - // { - // topics: exportSettings.topics, - // tasks: exportSettings.tasks, - // columnBoards: exportSettings.columnBoards, - // }, - // { - // responseType: "blob", - // } - // ); + const link = document.createElement("a"); link.href = URL.createObjectURL( new Blob([response.data as unknown as Blob])