Skip to content

Commit acc9024

Browse files
Pass through all args
1 parent e682e8f commit acc9024

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/features/deploymentEnvironments/environmentV2Repository.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ export class EnvironmentV2Repository {
1717
}
1818

1919
async list(args?: EnvironmentV2RepositoryListArgs): Promise<ResourceCollection<DeploymentEnvironmentV2>> {
20-
return this.client.request(`${spaceScopedRoutePrefix}/environments/v2{?skip,take}`, {
20+
return this.client.request(`${spaceScopedRoutePrefix}/environments/v2{?ids,partialName,skip,take}`, {
2121
spaceName: this.spaceName,
22-
...args, // not sure what args is doing but lets leave it for now
22+
...args,
2323
});
2424
}
2525
}

0 commit comments

Comments
 (0)