refactor(server): move file file report endpoints to their own controller (#8925)

* move file report to its own controller

* chore: open api
This commit is contained in:
Daniel Dietzler
2024-04-20 02:35:54 +02:00
committed by GitHub
parent 57be9182d4
commit 78c7ff855d
14 changed files with 585 additions and 522 deletions

View File

@@ -17,25 +17,10 @@ void main() {
// final instance = AuditApi();
group('tests for AuditApi', () {
//Future fixAuditFiles(FileReportFixDto fileReportFixDto) async
test('test fixAuditFiles', () async {
// TODO
});
//Future<AuditDeletesResponseDto> getAuditDeletes(DateTime after, EntityType entityType, { String userId }) async
test('test getAuditDeletes', () async {
// TODO
});
//Future<FileReportDto> getAuditFiles() async
test('test getAuditFiles', () async {
// TODO
});
//Future<List<FileChecksumResponseDto>> getFileChecksums(FileChecksumDto fileChecksumDto) async
test('test getFileChecksums', () async {
// TODO
});
});
}