dashboardsFetchDashboards: "dashboardsFetchDashboards" = 'dashboardsFetchDashboards'

Method name for PRE dashboardsFetchDashboardsPre and POST dashboardsFetchDashboards

This method can be used to modify dashboards before showing on Dashboards selector.

Notes: The method is expected to return a list containing the modified dashboards property. Failure to do so will result in an empty dashboard list.

Additional Properties:

  • dashboards: Returns array with all available dashboards.

Example: (Basic)

export const dashboardsFetchDashboards = async ({ api, dashboards }) => {
// TODO: Add your code
return;
}

Generated using TypeDoc