dashboardsInputsSet: "dashboardsInputsSet" = 'dashboardsInputsSet'

Method name for PRE dashboardsInputsSetPre and POST dashboardsInputsSet

This method can be used to modify dashboard's inputs when the Dashboard is selected.

Notes: Ensure that the method returns the entire dashboard object, including the modified inputs, rather than just the input object. Method should return:

return {
  run: 'yes',
  dashboard
}

Additional Properties:

  • dashboard: In this property input object can be found.

Example: (Basic)

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

Generated using TypeDoc