@broadcom/endevor-bridge-for-git-rest-api
Version:
Endevor Bridge for Git Rest client
14 lines (13 loc) • 405 B
JavaScript
import { MappingAction } from "./MappingAction";
import { RequestMethod } from "../../AbstractRequest";
export class GetGitChangeMetadata extends MappingAction {
constructor(context, repository) {
super(context, repository);
this.customPath = "/gitChange";
this.method = RequestMethod.GET;
this.params = {
context,
repository
};
}
}