summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/repo/stores/state.js
blob: 6cf7565c95547f59d8912e19e0a198381e3aa2cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
export default {
  project: {
    id: 0,
    name: '',
  },
  currentBranch: '',
  endpoints: {},
  isRoot: false,
  isInitialRoot: false,
  currentRef: '',
  canCommit: false,
  onTopOfBranch: false,
  editMode: false,
  loading: false,
  currentBlobView: '',
  discardPopupOpen: false,
  tree: [],
  openFiles: [],
  parentTreeUrl: '',
  previousUrl: '',
};