mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 09:05:45 -06:00
15 lines
638 B
TypeScript
15 lines
638 B
TypeScript
// The ID of the app plugin that we render under that "Cloud Integrations" tab
|
|
export const CLOUD_ONBOARDING_APP_ID = 'grafana-easystart-app';
|
|
|
|
// The ID of the main nav-tree item (the main item in the NavIndex)
|
|
export const ROUTE_BASE_ID = 'connections';
|
|
|
|
export const ROUTES = {
|
|
DataSources: `/${ROUTE_BASE_ID}/datasources`,
|
|
DataSourcesNew: `/${ROUTE_BASE_ID}/datasources/new`,
|
|
DataSourcesEdit: `/${ROUTE_BASE_ID}/datasources/edit/:uid`,
|
|
DataSourcesDashboards: `/${ROUTE_BASE_ID}/datasources/edit/:uid/dashboards`,
|
|
Plugins: `/${ROUTE_BASE_ID}/plugins`,
|
|
CloudIntegrations: `/${ROUTE_BASE_ID}/cloud-integrations`,
|
|
} as const;
|