refactor: add validation to workspace create

This commit is contained in:
2026-06-30 16:37:45 +03:30
parent 77e365a259
commit a4aba43bc1
3 changed files with 23 additions and 16 deletions
@@ -19,7 +19,6 @@ export class WorkspaceRepository {
findOneById(id: string) {
return this.repository.findOne({
where: { id },
relations: ["workspaceType", "projects", "users"],
});
}