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

mock_data.js « color_select_dropdown « components « vue_shared « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 097f47cc7316ccd8bd1ed9e836ea9f10d9d8e0fb (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 color = {
  color: '#217645',
  title: 'Green',
};

export const colorQueryResponse = {
  data: {
    workspace: {
      id: 'gid://gitlab/Workspace/1',
      issuable: {
        __typename: 'Epic',
        id: 'gid://gitlab/Epic/1',
        color: '#217645',
      },
    },
  },
};

export const updateColorMutationResponse = {
  data: {
    updateIssuableColor: {
      issuable: {
        __typename: 'Epic',
        id: 'gid://gitlab/Epic/1',
        color: '#217645',
      },
      errors: [],
    },
  },
};