* 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>
4 lines
125 B
TypeScript
4 lines
125 B
TypeScript
export const getDryRunLogHeader = (isDryRun: boolean | undefined): string => {
|
|
return isDryRun ? 'Dry-run mode: ' : '';
|
|
};
|