log deletion of user files from admin -- fixes #631
This commit is contained in:
parent
9bca68d774
commit
06da059dbf
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||||
});
|
});
|
||||||
|
|
||||||
for (const file of files) {
|
for (const file of files) {
|
||||||
this.driveService.deleteFile(file);
|
this.driveService.deleteFile(file, false, me);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue