api: optimise pagination in API schema (#6478)

This commit is contained in:
Jens L
2023-08-05 15:37:06 +02:00
committed by GitHub
parent efc660938c
commit 00fae2353c
9 changed files with 177 additions and 2052 deletions

View File

@ -47,6 +47,8 @@ export class DeleteObjectsTable<T> extends Table<T> {
totalPages: 1,
startIndex: 1,
endIndex: this.objects.length,
next: 0,
previous: 0,
},
results: this.objects,
});