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: 90289757a74c4e36c611877f071c908b520c6c3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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', createdAt: '2017-09-01T05:46:38.977Z' },
    reportedUserPath: '/mr_abuser',
    reporterPath: '/admin',
    userBlocked: false,
    blockUserPath: '/block/user/mr_abuser/path',
    removeUserAndReportPath: '/remove/user/mr_abuser/and/report/path',
    removeReportPath: '/remove/report/path',
    message: 'message 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', createdAt: '2016-09-01T05:46:38.977Z' },
    reportedUserPath: '/mr_phisher',
    reporterPath: '/admin',
    userBlocked: false,
    blockUserPath: '/block/user/mr_phisher/path',
    removeUserAndReportPath: '/remove/user/mr_phisher/and/report/path',
    removeReportPath: '/remove/report/path',
    message: 'message 2',
  },
];