Skip to content

Commit

Permalink
use correct http method for deleting deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
hahahannes committed Nov 27, 2023
1 parent a4ff19a commit a2609e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class ModuleManagerService {
if(forceConfirmed) {
queryParams = queryParams.set("force", "true")
}
return <Observable<any>>this.http.patch(url, undefined, queryParams, 'text');
return <Observable<any>>this.http.delete(url, undefined, queryParams, 'text');
}

deleteDeployments(deploymentIDs: string[], forceConfirmed: boolean): Observable<any> {
Expand Down

0 comments on commit a2609e7

Please sign in to comment.