UNPKG

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

Version:

Endevor Bridge for Git Rest client

16 lines (15 loc) 442 B
import { JobsAction } from "./JobsAction"; import { RequestMethod } from "../AbstractRequest"; export class MigrateRerun extends JobsAction { constructor(context, repository) { super(); this.customPath = "/migrate/rerun"; this.method = RequestMethod.POST; this.context = context; this.repository = repository; this.payload = { context, repository }; } }