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/ci/reports/codequality_report/store/state.js')
-rw-r--r--app/assets/javascripts/ci/reports/codequality_report/store/state.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/assets/javascripts/ci/reports/codequality_report/store/state.js b/app/assets/javascripts/ci/reports/codequality_report/store/state.js
new file mode 100644
index 00000000000..f68dbc2a5fa
--- /dev/null
+++ b/app/assets/javascripts/ci/reports/codequality_report/store/state.js
@@ -0,0 +1,16 @@
+export default () => ({
+ reportsPath: null,
+
+ baseBlobPath: null,
+ headBlobPath: null,
+
+ isLoading: false,
+ hasError: false,
+ status: '',
+ statusReason: '',
+
+ newIssues: [],
+ resolvedIssues: [],
+
+ helpPath: null,
+});