feat: reset oauth ids (#20798)

This commit is contained in:
Jason Rasmussen
2025-08-08 15:42:38 -04:00
committed by GitHub
parent 9ecaa3fa9d
commit 538d5c81ea
15 changed files with 247 additions and 6 deletions

View File

@@ -194,6 +194,10 @@ export class UserRepository {
.executeTakeFirstOrThrow();
}
async updateAll(dto: Updateable<UserTable>) {
await this.db.updateTable('user').set(dto).execute();
}
restore(id: string) {
return this.db
.updateTable('user')