feat: allow scaffolder tasks pagination in the frontend

Requires #26378, relates to #25856

Signed-off-by: Heikki Hellgren <heikki.hellgren@op.fi>
This commit is contained in:
Heikki Hellgren
2024-08-30 14:03:24 +03:00
parent b878e14f70
commit 785d68f75a
8 changed files with 104 additions and 33 deletions
+3 -1
View File
@@ -223,7 +223,9 @@ export interface ScaffolderApi {
listTasks?(options: {
filterByOwnership: 'owned' | 'all';
}): Promise<{ tasks: ScaffolderTask[] }>;
limit?: number;
offset?: number;
}): Promise<{ tasks: ScaffolderTask[]; totalTasks?: number }>;
getIntegrationsList(
options: ScaffolderGetIntegrationsListOptions,