From 4da2ef7bbbe2522a99b3ff98a9bfcaa2b1ba6127 Mon Sep 17 00:00:00 2001 From: Valentin Yanakiev Date: Mon, 11 Nov 2024 18:07:56 +0200 Subject: [PATCH] Address pr comment --- src/services/auth-reset/publisher/auth-reset.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/auth-reset/publisher/auth-reset.service.ts b/src/services/auth-reset/publisher/auth-reset.service.ts index 212b93a82..1befb40b7 100644 --- a/src/services/auth-reset/publisher/auth-reset.service.ts +++ b/src/services/auth-reset/publisher/auth-reset.service.ts @@ -30,7 +30,7 @@ export class AuthResetService { try { await this.publishAuthorizationResetAllAccounts(task.id); await this.publishAuthorizationResetAllOrganizations(task.id); - await this.publishAuthorizatinoResetAllUsers(task.id); + await this.publishAuthorizationResetAllUsers(task.id); await this.publishAuthorizationResetPlatform(); await this.publishAuthorizationResetAiServer(); // And reset licenses @@ -92,7 +92,7 @@ export class AuthResetService { return task.id; } - public async publishAuthorizatinoResetAllUsers(taskId?: string) { + public async publishAuthorizationResetAllUsers(taskId?: string) { const users = await this.manager.find(User, { select: { id: true }, });