Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.js « pipelines « modules « stores « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ded00196ab716c7bd9dbf092bc846e69f3a94411 (plain)
1
2
3
4
5
6
7
8
9
10
export const normalizeJob = (job) => ({
  id: job.id,
  name: job.name,
  status: job.status,
  path: job.build_path,
  rawPath: `${job.build_path}/raw`,
  started: job.started,
  output: '',
  isLoading: false,
});