Browse Source
Feature/improve error handling in delete user endpoint (#2000)
* Improve error handling
* Update changelog
pull/2005/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
21 additions and
12 deletions
-
CHANGELOG.md
-
apps/api/src/app/user/user.service.ts
|
|
@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Decreased the density of the `@angular/material` tables |
|
|
|
- Improved the breadcrumb navigation style in the blog post pages for mobile |
|
|
|
- Improved the error handling in the delete user endpoint |
|
|
|
- Improved the style of the _Changelog & License_ button on the about page |
|
|
|
- Upgraded `ionicons` from version `6.1.2` to `7.1.0` |
|
|
|
|
|
|
|
|
|
@ -304,21 +304,29 @@ export class UserService { |
|
|
|
} |
|
|
|
|
|
|
|
public async deleteUser(where: Prisma.UserWhereUniqueInput): Promise<User> { |
|
|
|
await this.prismaService.access.deleteMany({ |
|
|
|
where: { OR: [{ granteeUserId: where.id }, { userId: where.id }] } |
|
|
|
}); |
|
|
|
try { |
|
|
|
await this.prismaService.access.deleteMany({ |
|
|
|
where: { OR: [{ granteeUserId: where.id }, { userId: where.id }] } |
|
|
|
}); |
|
|
|
} catch {} |
|
|
|
|
|
|
|
await this.prismaService.account.deleteMany({ |
|
|
|
where: { userId: where.id } |
|
|
|
}); |
|
|
|
try { |
|
|
|
await this.prismaService.account.deleteMany({ |
|
|
|
where: { userId: where.id } |
|
|
|
}); |
|
|
|
} catch {} |
|
|
|
|
|
|
|
await this.prismaService.analytics.delete({ |
|
|
|
where: { userId: where.id } |
|
|
|
}); |
|
|
|
try { |
|
|
|
await this.prismaService.analytics.delete({ |
|
|
|
where: { userId: where.id } |
|
|
|
}); |
|
|
|
} catch {} |
|
|
|
|
|
|
|
await this.prismaService.order.deleteMany({ |
|
|
|
where: { userId: where.id } |
|
|
|
}); |
|
|
|
try { |
|
|
|
await this.prismaService.order.deleteMany({ |
|
|
|
where: { userId: where.id } |
|
|
|
}); |
|
|
|
} catch {} |
|
|
|
|
|
|
|
try { |
|
|
|
await this.prismaService.settings.delete({ |
|
|
|