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

state.js « stores « ide « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 56205aef44133988e746a12ccf32039e0aaf148d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
export default () => ({
  canCommit: false,
  currentBranch: '',
  currentBlobView: 'repo-editor',
  currentRef: '',
  discardPopupOpen: false,
  editMode: true,
  endpoints: {},
  isRoot: false,
  isInitialRoot: false,
  lastCommitPath: '',
  loading: false,
  onTopOfBranch: false,
  openFiles: [],
  selectedFile: null,
  path: '',
  project: {
    id: 0,
    name: '',
    url: '',
  },
  parentTreeUrl: '',
  trees: {},
  projects: {},
});