18 lines
403 B
JavaScript
18 lines
403 B
JavaScript
|
import invalidUrl from '~/lib/utils/invalid_url';
|
||
|
|
||
|
export default () => ({
|
||
|
hasMetrics: false,
|
||
|
showPanels: true,
|
||
|
metricsEndpoint: null,
|
||
|
environmentsEndpoint: null,
|
||
|
deploymentsEndpoint: null,
|
||
|
dashboardEndpoint: invalidUrl,
|
||
|
useDashboardEndpoint: false,
|
||
|
emptyState: 'gettingStarted',
|
||
|
showEmptyState: true,
|
||
|
groups: [],
|
||
|
deploymentData: [],
|
||
|
environments: [],
|
||
|
metricsWithData: [],
|
||
|
});
|