Files
twenty/packages/twenty-server/src/utils/get-dry-run-log-header.ts
martmull 7001ca83d1 3491 launch cleaning cron (#3872)
* Add command to delete incomplete workspaces

* Inject command dependencies

* Fix command

* Do not delete core.workspace

* Reorganize files

* Delete src/workspace/cron

* Fix

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
2024-02-07 18:52:48 +01:00

4 lines
125 B
TypeScript

export const getDryRunLogHeader = (isDryRun: boolean | undefined): string => {
return isDryRun ? 'Dry-run mode: ' : '';
};