summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/registry/settings/store/state.js
blob: c3a26083c9fa8e2ce9fc12dba33950ba218193b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export default () => ({
  /*
   * Project Id used to build the API call
   */
  projectId: '',
  /*
   * Boolean to determine if the UI is loading data from the API
   */
  isLoading: false,
  /*
   * This contains the data shown and manipulated in the UI
   * Has the following structure:
   * {
   *  enabled: Boolean
   *  cadence: String,
   *  older_than: String,
   *  keep_n: String,
   *  name_regex: String
   * }
   */
  settings: {},
  /*
   * Same structure as settings, above but Frozen object and used only in case the user clicks 'cancel'
   */
  original: {},
});