mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
rename "Your data source" to "Data source" page This page was meant to be named "Data source" in the previous PR [0]. I just made a mistake by naming it wrongly. [0]: https://github.com/grafana/grafana/pull/66813/files
17 lines
585 B
TypeScript
17 lines
585 B
TypeScript
// The ID of the main nav-tree item (the main item in the NavIndex)
|
|
export const ROUTE_BASE_ID = 'connections';
|
|
|
|
export const ROUTES = {
|
|
Base: `/${ROUTE_BASE_ID}`,
|
|
|
|
// Data sources
|
|
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`,
|
|
|
|
// Add new connection
|
|
AddNewConnection: `/${ROUTE_BASE_ID}/add-new-connection`,
|
|
DataSourcesDetails: `/${ROUTE_BASE_ID}/datasources/:id`,
|
|
} as const;
|