UNPKG

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

Version:

Endevor Bridge for Git Rest client

11 lines (10 loc) 388 B
import { MappingAction } from "./MappingAction"; import { RequestMethod } from "../../AbstractRequest"; export class GetMappingEndevorChangeMetadata extends MappingAction { constructor(context, repository) { super(context, repository); this.customPath = "/endevorChange"; this.method = RequestMethod.GET; this.params = { context, repository }; } }