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

state.js « terminal « modules « stores « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f35a10ed2fe7503887c7b8f9baac68a9e1a8026a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { CHECK_CONFIG, CHECK_RUNNERS } from './constants';

export default () => ({
  checks: {
    [CHECK_CONFIG]: { isLoading: true },
    [CHECK_RUNNERS]: { isLoading: true },
  },
  isVisible: false,
  isShowSplash: true,
  paths: {},
  session: null,
  sessionStatusInterval: 0,
});