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

commit.js « utils « repository « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 878b4fdd71a6ee505580fa419a83a91da11a2e9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export function normalizeData(data, path, extra = () => {}) {
  return data.map((d) => ({
    sha: d.commit.id,
    message: d.commit.message,
    titleHtml: d.commit_title_html,
    committedDate: d.commit.committed_date,
    commitPath: d.commit_path,
    fileName: d.file_name,
    filePath: `${path}/${d.file_name}`,
    __typename: 'LogTreeCommit',
    ...extra(d),
  }));
}