Addressed test failures from users API changes

This commit is contained in:
Dan Brown
2022-02-04 01:02:13 +00:00
parent 46e6e239dc
commit c8be6ee8a6
5 changed files with 9 additions and 5 deletions

View File

@ -192,7 +192,7 @@ class UserRepo
*/
public function create(array $data, bool $sendInvite = false): User
{
$user = $this->createWithoutActivity($data, false);
$user = $this->createWithoutActivity($data, true);
if ($sendInvite) {
$this->inviteService->sendInvitation($user);