@broadcom/endevor-bridge-for-git-rest-api
Version:
Endevor Bridge for Git Rest client
17 lines (16 loc) • 472 B
JavaScript
import { GitAction } from "./GitAction";
import { RequestMethod } from "../AbstractRequest";
export class GetGitAppPublicLink extends GitAction {
constructor() {
super();
this.customPath = "/app-public-link";
this.defaultRequestConfig = {
headers: {
'Accept': 'text/plain'
},
withCredentials: true,
responseType: "text"
};
this.method = RequestMethod.GET;
}
}