@broadcom/endevor-bridge-for-git-rest-api
Version:
Endevor Bridge for Git Rest client
15 lines (14 loc) • 512 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.VerifyRemoteGitUrl = void 0;
const GitAction_1 = require("./GitAction");
const AbstractRequest_1 = require("../AbstractRequest");
class VerifyRemoteGitUrl extends GitAction_1.GitAction {
constructor(payload) {
super();
this.customPath = "/repository/verify";
this.method = AbstractRequest_1.RequestMethod.PUT;
this.payload = payload;
}
}
exports.VerifyRemoteGitUrl = VerifyRemoteGitUrl;