summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/serverless/store/state.js
blob: afc3f37d7ba3f3e81f55718bab5537309ba20c1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export default () => ({
  error: null,
  isLoading: true,

  // functions
  functions: [],
  hasFunctionData: true,

  // function_details
  hasPrometheus: true,
  hasPrometheusData: false,
  graphData: {},
});