test: cont. integrity service tests

This commit is contained in:
izzy
2025-12-18 12:56:14 +00:00
parent b2053503bb
commit 31ac88f158
4 changed files with 241 additions and 43 deletions

View File

@@ -42,7 +42,7 @@ export class IntegrityController {
})
@Authenticated({ permission: Permission.Maintenance, admin: true })
getIntegrityReport(@Body() dto: IntegrityGetReportDto): Promise<IntegrityReportResponseDto> {
return this.service.getIntegrityReport(dto);
return this.service.getIntegrityReport(dto.type);
}
@Delete('report/:id')