Skip to content

Commit

Permalink
updated deployment deletion request
Browse files Browse the repository at this point in the history
  • Loading branch information
hahahannes committed Nov 20, 2023
1 parent dcae887 commit bb1f993
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ export class ModuleManagerService {
if(forceConfirmed) {
queryParams = queryParams.set("force", "true")
}
return <Observable<any>>this.http.delete(url, deploymentIDs, queryParams);
queryParams = queryParams.set("ids", deploymentIDs.join(","))
return <Observable<any>>this.http.delete(url, undefined, queryParams);
}

loadDeploymentUpdateTemplate(moduleId: string): Observable<DeploymentTemplate> {
Expand Down

0 comments on commit bb1f993

Please sign in to comment.