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

mock_data.js « abuse_reports « admin « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3101321d02d40fe0251d0ccc551add3a7b2d056c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { mockLabel1, mockLabel2 } from '../abuse_report/mock_data';

export const mockAbuseReports = [
  {
    category: 'spam',
    createdAt: '2018-10-03T05:46:38.977Z',
    updatedAt: '2022-12-07T06:45:39.977Z',
    reporter: { name: 'Ms. Admin' },
    reportedUser: { name: 'Mr. Abuser' },
    reportPath: '/admin/abuse_reports/1',
    count: 1,
    labels: [mockLabel1, mockLabel2],
  },
  {
    category: 'phishing',
    createdAt: '2018-10-03T05:46:38.977Z',
    updatedAt: '2022-12-07T06:45:39.977Z',
    reporter: { name: 'Ms. Reporter' },
    reportedUser: { name: 'Mr. Phisher' },
    reportPath: '/admin/abuse_reports/2',
    count: 2,
  },
];