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

state.js « stores « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88f333aeb80895d76782859aff2a402b6c1240ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import invalidUrl from '~/lib/utils/invalid_url';

export default () => ({
  metricsEndpoint: null,
  environmentsEndpoint: null,
  deploymentsEndpoint: null,
  dashboardEndpoint: invalidUrl,
  emptyState: 'gettingStarted',
  showEmptyState: true,
  showErrorBanner: true,
  dashboard: {
    panel_groups: [],
  },
  deploymentData: [],
  environments: [],
  allDashboards: [],
  currentDashboard: null,
  projectPath: null,
});