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 d56d0c5 commit c45b81fCopy full SHA for c45b81f
components/gitpod-db/src/typeorm/user-db-impl.ts
@@ -462,7 +462,7 @@ export class TypeORMUserDBImpl extends TransactionalDBImpl<UserDB> implements Us
462
463
public async deleteSSHPublicKey(userId: string, id: string): Promise<void> {
464
const repo = await this.getSSHPublicKeyRepo();
465
- await repo.update({ userId, id }, { deleted: true });
+ await repo.delete({ userId, id });
466
}
467
468
public async findAllUsers(
0 commit comments