5188 bug some canceled subscriptions are billed (#5254)

When user is deleting its account on a specific workspace, we remove it
as if it was a workspaceMember, and if no workspaceMember remains, we
delete the workspace and the associated stripe subscription
This commit is contained in:
martmull
2024-05-13 10:23:32 +02:00
committed by GitHub
parent 92acfe57a1
commit 1ac8abb118
11 changed files with 157 additions and 101 deletions

View File

@ -83,7 +83,7 @@ export class DeleteIncompleteWorkspacesCommand extends CommandRunner {
} name: '${incompleteWorkspace.displayName}'`,
);
if (!options.dryRun) {
await this.workspaceService.solfDeleteWorkspace(incompleteWorkspace.id);
await this.workspaceService.softDeleteWorkspace(incompleteWorkspace.id);
}
}
}