contractsListPreferencesLoad: "contractsListPreferencesLoad" = 'contractsListPreferencesLoad'

Method name for PRE contractsListPreferencesLoadPre and POST contractsListPreferencesLoad

Method can be used to modify preferences object before applying preferences on contract list page /#/pm/contracts/<contractId>.

Notes: Ensure that the preferences object is returned at the end of the method; otherwise, the preference list will be empty!

Additional Properties:

  • preferences: Returns list of preferences which can be edited.

Example: (Basic)

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

Generated using TypeDoc