Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « sast « reports « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3800065917bb85f5b71bc52efb70085a2f96ca4f (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
43
44
export const SEVERITY_CLASSES = {
  info: 'gl-text-blue-400',
  low: 'gl-text-orange-300',
  medium: 'gl-text-orange-400',
  high: 'gl-text-red-600',
  critical: 'gl-text-red-800',
  unknown: 'gl-text-gray-400',
};

export const SEVERITY_ICONS = {
  info: 'severity-info',
  low: 'severity-low',
  medium: 'severity-medium',
  high: 'severity-high',
  critical: 'severity-critical',
  unknown: 'severity-unknown',
};

export const SEVERITIES = {
  info: {
    class: SEVERITY_CLASSES.info,
    name: SEVERITY_ICONS.info,
  },
  low: {
    class: SEVERITY_CLASSES.low,
    name: SEVERITY_ICONS.low,
  },
  medium: {
    class: SEVERITY_CLASSES.medium,
    name: SEVERITY_ICONS.medium,
  },
  high: {
    class: SEVERITY_CLASSES.high,
    name: SEVERITY_ICONS.high,
  },
  critical: {
    class: SEVERITY_CLASSES.critical,
    name: SEVERITY_ICONS.critical,
  },
  unknown: {
    class: SEVERITY_CLASSES.unknown,
    name: SEVERITY_ICONS.unknown,
  },
};