From 54d7fdf79238b06171444a3428f01863db5ce329 Mon Sep 17 00:00:00 2001 From: paf <paf@titelfrei.de> Date: Tue, 8 Jun 2021 18:54:09 +0200 Subject: [PATCH] Add a message for the case of files which can not be deleted because they where referenced by others. A player referenced in a unit can not be deleted without deleting the unit. A Unit used in a booklet can not be deleted without deleting the booklet. A booklet used in a Testtakers-File can not be deleted without that. --- src/app/workspace-admin/backend.service.ts | 1 + src/app/workspace-admin/files/files.component.ts | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/src/app/workspace-admin/backend.service.ts b/src/app/workspace-admin/backend.service.ts index 30f8d14a..3c68bc63 100644 --- a/src/app/workspace-admin/backend.service.ts +++ b/src/app/workspace-admin/backend.service.ts @@ -179,4 +179,5 @@ export interface FileDeletionReport { deleted: string[]; not_allowed: string[]; did_not_exist: string[]; + was_used: string[]; } diff --git a/src/app/workspace-admin/files/files.component.ts b/src/app/workspace-admin/files/files.component.ts index 6a9713df..b98eddb4 100644 --- a/src/app/workspace-admin/files/files.component.ts +++ b/src/app/workspace-admin/files/files.component.ts @@ -131,6 +131,10 @@ export class FilesComponent implements OnInit { if (fileDeletionReport.not_allowed.length > 0) { message.push(`${fileDeletionReport.not_allowed.length} Dateien konnten nicht gelöscht werden.`); } + if (fileDeletionReport.was_used.length > 0) { + message.push(`${fileDeletionReport.was_used.length} Dateien werden von anderen verwendet + und wurden nicht gelöscht.`); + } this.snackBar.open(message.join('<br>'), message.length > 1 ? 'Achtung' : '', { duration: 1000 }); this.updateFileList(); }); -- GitLab