fix signup email

This commit is contained in:
Philipinho
2025-02-18 16:26:16 +00:00
parent 74a5360561
commit fd5ad2f576

View File

@ -79,7 +79,7 @@ export class SignupService {
const user = await this.userRepo.insertUser( const user = await this.userRepo.insertUser(
{ {
name: createAdminUserDto.name, name: createAdminUserDto.name,
email: createAdminUserDto.name, email: createAdminUserDto.email,
password: createAdminUserDto.password, password: createAdminUserDto.password,
role: UserRole.OWNER, role: UserRole.OWNER,
emailVerifiedAt: new Date(), emailVerifiedAt: new Date(),