Skip to content

Commit

Permalink
Address pr comment
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinyanakiev committed Nov 11, 2024
1 parent b3c33f6 commit 4da2ef7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/auth-reset/publisher/auth-reset.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 },
});
Expand Down

0 comments on commit 4da2ef7

Please sign in to comment.