@broadcom/endevor-bridge-for-git-rest-api
Version:
Endevor Bridge for Git Rest client
12 lines (11 loc) • 374 B
JavaScript
import { UserAction } from "./UserAction";
import { RequestMethod } from "../../AbstractRequest";
export class DeleteGitCredentials extends UserAction {
constructor(providerId) {
super();
this.customPath = "/credentials/git";
this.method = RequestMethod.DELETE;
this.params = { providerId };
this.providerId = providerId;
}
}