summaryrefslogtreecommitdiff
path: root/spec/frontend/design_management/mock_data/project.js
blob: e1c2057d8d144d74ae100e1084fa0f3f48b99341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import design from './design';

export default {
  project: {
    issue: {
      designCollection: {
        designs: {
          nodes: [
            {
              ...design,
            },
          ],
        },
      },
    },
  },
};