fix signup email
This commit is contained in:
parent
74a5360561
commit
fd5ad2f576
1 changed files with 1 additions and 1 deletions
|
|
@ -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(),
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue