UNPKG

@broadcom/endevor-bridge-for-git-rest-api

Version:

Endevor Bridge for Git Rest client

16 lines (15 loc) 468 B
import { MappingAction } from "./MappingAction"; import { RequestMethod } from "../../AbstractRequest"; export class DeleteFailedBranches extends MappingAction { constructor(context, repository) { super(); this.customPath = "/deleteFailedBranches"; this.context = context; this.repository = repository; this.method = RequestMethod.POST; this.params = { context, repository }; } }