fix: welcome email password (#21732)

This commit is contained in:
Jason Rasmussen
2025-09-10 09:11:42 -04:00
committed by GitHub
parent ee98e69097
commit 39eee6a634
5 changed files with 8 additions and 70 deletions

View File

@@ -147,7 +147,7 @@ describe(NotificationService.name, () => {
await sut.onUserSignup({ id: '', notify: true });
expect(mocks.job.queue).toHaveBeenCalledWith({
name: JobName.NotifyUserSignup,
data: { id: '', tempPassword: undefined },
data: { id: '', password: undefined },
});
});
});