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: 1ea6ea7d1310ee1a808cc8a2a1d9dabbedf9d147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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',
  },
  {
    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',
  },
];