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

state.js « store « codequality_report « reports « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f68dbc2a5fa227d967559af38b3871961252ef66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export default () => ({
  reportsPath: null,

  baseBlobPath: null,
  headBlobPath: null,

  isLoading: false,
  hasError: false,
  status: '',
  statusReason: '',

  newIssues: [],
  resolvedIssues: [],

  helpPath: null,
});