pass is admin through create user

This commit is contained in:
Yisroel Baum 2026-04-24 13:14:57 +03:00
parent 0e86af3e81
commit 4157710187
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -23,6 +23,7 @@ class CreateUser
$this->userRepo->create(new CreateUserDto(
email: new EmailAddress($dto->email),
isAdmin: $dto->isAdmin,
));
}
}