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

mock_data.js « ci_secure_files « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a9e16d1ad6aa15ae72d8562bdb75004083fe41e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export const secureFiles = [
  {
    id: 1,
    name: 'myfile.jks',
    checksum: '16630b189ab34b2e3504f4758e1054d2e478deda510b2b08cc0ef38d12e80aac',
    checksum_algorithm: 'sha256',
    permissions: 'read_only',
    created_at: '2022-02-22T22:22:22.222Z',
  },
  {
    id: 2,
    name: 'myotherfile.jks',
    checksum: '16630b189ab34b2e3504f4758e1054d2e478deda510b2b08cc0ef38d12e80aa2',
    checksum_algorithm: 'sha256',
    permissions: 'execute',
    created_at: '2022-02-22T22:22:22.222Z',
  },
];