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

apollo_mock.js « mock_data « issue_show « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bfd31e7439367b6049acf2c600fd340d5906594d (plain)
1
2
3
4
5
6
7
8
9
export const getIssueStateQueryResponse = {
  issueType: 'issue',
  isDirty: false,
};

export const updateIssueStateQueryResponse = {
  issueType: 'incident',
  isDirty: true,
};