summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/registry/settings/store/state.js
blob: fccc0991c1ca2951baff166cdb531997b5729610 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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,
  /*
   * Boolean to determine if the user is an admin
   */
  isAdmin: false,
  /*
   * String containing the full path to the admin config page for CI/CD
   */
  adminSettingsPath: '',
  /*
   * Boolean to determine if project created before 12.8 can use this feature
   */
  enableHistoricEntries: 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', initialized to null
   */
  original: null,
  /*
   * Contains the options used to populate the form selects
   */
  formOptions: {},
});