We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d293912 commit 15ca4bdCopy full SHA for 15ca4bd
components/gitpod-db/src/typeorm/user-db-impl.ts
@@ -463,7 +463,7 @@ export class TypeORMUserDBImpl extends TransactionalDBImpl<UserDB> implements Us
463
464
public async deleteSSHPublicKey(userId: string, id: string): Promise<void> {
465
const repo = await this.getSSHPublicKeyRepo();
466
- await repo.update({ userId, id }, { deleted: true });
+ await repo.delete({ userId, id });
467
}
468
469
public async findAllUsers(
0 commit comments