UNPKG

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

Version:

Endevor Bridge for Git Rest client

16 lines (15 loc) 462 B
import { JobsAction } from "./JobsAction"; import { RequestMethod } from "../AbstractRequest"; export class RequestMappingSyncBackNow extends JobsAction { constructor(context, repository) { super(); this.customPath = "/sync-back/mapping/now"; this.method = RequestMethod.PUT; this.context = context; this.repository = repository; this.payload = { context, repository }; } }