@broadcom/endevor-bridge-for-git-rest-api
Version:
Endevor Bridge for Git Rest client
21 lines (20 loc) • 669 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetGitAppPublicLink = void 0;
const GitAction_1 = require("./GitAction");
const AbstractRequest_1 = require("../AbstractRequest");
class GetGitAppPublicLink extends GitAction_1.GitAction {
constructor() {
super();
this.customPath = "/app-public-link";
this.defaultRequestConfig = {
headers: {
'Accept': 'text/plain'
},
withCredentials: true,
responseType: "text"
};
this.method = AbstractRequest_1.RequestMethod.GET;
}
}
exports.GetGitAppPublicLink = GetGitAppPublicLink;