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

notes.js « mock_data « design_management « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db4624c8524ac7b5b9548584de6eb09498bb2bcd (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
31
32
export default [
  {
    id: 'note-id-1',
    position: {
      height: 100,
      width: 100,
      x: 10,
      y: 15,
    },
    userPermissions: {
      adminNote: true,
    },
    discussion: {
      id: 'discussion-id-1',
    },
  },
  {
    id: 'note-id-2',
    position: {
      height: 50,
      width: 50,
      x: 25,
      y: 25,
    },
    userPermissions: {
      adminNote: true,
    },
    discussion: {
      id: 'discussion-id-2',
    },
  },
];