Skip to content

Commit

Permalink
No but this works
Browse files Browse the repository at this point in the history
  • Loading branch information
dowhep committed Mar 28, 2024
1 parent cab5a90 commit 9e94117
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions repositories/UserRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ export class UserRepository extends BaseRepository<UserModel> {
.createQueryBuilder()
.select(['email', 'UserModel.firstName', 'UserModel.lastName'])
.getRawMany();
return namesEmailsRaw.map((nameEmailRaw) =>
`${nameEmailRaw.UserModel_firstName} ${nameEmailRaw.UserModel_lastName} (${nameEmailRaw.email})`);
return namesEmailsRaw.map((nameEmailRaw) => `${nameEmailRaw.UserModel_firstName} ` +
`${nameEmailRaw.UserModel_lastName} (${nameEmailRaw.email})`);
}

public static async generateHash(pass: string): Promise<string> {
Expand Down

0 comments on commit 9e94117

Please sign in to comment.