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

state.js « store « clusters_list « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d590ea09e66eb48062ad0d00a0c12d48021f3c71 (plain)
1
2
3
4
5
6
7
8
9
export default (initialState = {}) => ({
  endpoint: initialState.endpoint,
  hasAncestorClusters: false,
  loading: true,
  clusters: [],
  clustersPerPage: 0,
  page: 1,
  totalCulsters: 0,
});