summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/metric_images/store/state.js
blob: b734e5c87a6a167dad51fb54964ae979891d5864 (plain)
1
2
3
4
5
6
7
8
9
10
export default ({ modelIid, projectId } = {}) => ({
  // Initial state
  modelIid,
  projectId,

  // View state
  metricImages: [],
  isLoadingMetricImages: false,
  isUploadingImage: false,
});