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