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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/cycle_analytics/store/state.js')
-rw-r--r--app/assets/javascripts/cycle_analytics/store/state.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/app/assets/javascripts/cycle_analytics/store/state.js b/app/assets/javascripts/cycle_analytics/store/state.js
deleted file mode 100644
index 8d662333afa..00000000000
--- a/app/assets/javascripts/cycle_analytics/store/state.js
+++ /dev/null
@@ -1,31 +0,0 @@
-import {
- PAGINATION_SORT_FIELD_END_EVENT,
- PAGINATION_SORT_DIRECTION_DESC,
-} from '~/cycle_analytics/constants';
-
-export default () => ({
- id: null,
- features: {},
- endpoints: {},
- createdAfter: null,
- createdBefore: null,
- stages: [],
- analytics: [],
- valueStreams: [],
- selectedValueStream: {},
- selectedStage: {},
- selectedStageEvents: [],
- selectedStageError: '',
- medians: {},
- stageCounts: {},
- hasNoAccessError: false,
- isLoading: false,
- isLoadingStage: false,
- isEmptyStage: false,
- pagination: {
- page: null,
- hasNextPage: false,
- sort: PAGINATION_SORT_FIELD_END_EVENT,
- direction: PAGINATION_SORT_DIRECTION_DESC,
- },
-});