refactor: minor updates

This commit is contained in:
abdou6666
2024-11-22 17:56:22 +01:00
parent 09b3201949
commit 978562900e
2 changed files with 3 additions and 22 deletions

View File

@@ -332,7 +332,7 @@ export class BlockController extends BaseController<
@CsrfCheck(true)
@Delete('')
@HttpCode(204)
async deleteMany(@Body('ids') ids: string[]): Promise<DeleteResult> {
async deleteBlocksByIds(@Body('ids') ids: string[]): Promise<DeleteResult> {
if (!ids || ids.length === 0) {
throw new BadRequestException('No IDs provided for deletion.');
}