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

constants.js « observability « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74dd543e285e209fe50d3dd35f02f5b126c70ef5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export const MESSAGE_EVENT_TYPE = Object.freeze({
  GOUI_LOADED: 'GOUI_LOADED',
  GOUI_ROUTE_UPDATE: 'GOUI_ROUTE_UPDATE',
});

export const OBSERVABILITY_ROUTES = Object.freeze({
  DASHBOARDS: '/groups/gitlab-org/-/observability/dashboards',
  EXPLORE: '/groups/gitlab-org/-/observability/explore',
  MANAGE: '/groups/gitlab-org/-/observability/manage',
});

export const SKELETON_VARIANT = Object.freeze({
  DASHBOARDS: 'dashboards',
  EXPLORE: 'explore',
  MANAGE: 'manage',
});