Skip to content

Commit

Permalink
fix: merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
guillobits committed Nov 27, 2024
1 parent 39b7195 commit e5e6163
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/mails/mails.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ export class MailsService {
});
}

async sendWelcomeMail(user: User) {
async sendWelcomeMail(
user: Pick<User, 'id' | 'firstName' | 'role' | 'zone' | 'email'>
) {
const { candidatesAdminMail } = getAdminMailsFromZone(user.zone);

if (user.role === UserRoles.COACH) {
Expand Down

0 comments on commit e5e6163

Please sign in to comment.