mirror of
https://codeberg.org/yeentown/barkey
synced 2024-11-22 11:25:13 +00:00
upd: add additional check from delete endpoint
This commit is contained in:
parent
360a127ad7
commit
42530b5a39
1 changed files with 3 additions and 3 deletions
|
@ -41,8 +41,8 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||||
super(meta, paramDef, async (ps, me) => {
|
super(meta, paramDef, async (ps, me) => {
|
||||||
const user = await this.usersRepository.findOneBy({ id: ps.userId });
|
const user = await this.usersRepository.findOneBy({ id: ps.userId });
|
||||||
|
|
||||||
if (user == null) {
|
if (user == null || user.isDeleted) {
|
||||||
throw new Error('user not found');
|
throw new Error('user not found or already deleted');
|
||||||
}
|
}
|
||||||
|
|
||||||
const profile = await this.userProfilesRepository.findOneBy({ userId: ps.userId });
|
const profile = await this.userProfilesRepository.findOneBy({ userId: ps.userId });
|
||||||
|
|
Loading…
Reference in a new issue