From cc1ddc87d919d1d167ddb219f42cb75be1b3ea68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Fri, 6 May 2022 11:03:41 +0000 Subject: [PATCH] Fix tema user creation --- app/controllers/api/teams.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/controllers/api/teams.php b/app/controllers/api/teams.php index 22705d3bf..9768f23c3 100644 --- a/app/controllers/api/teams.php +++ b/app/controllers/api/teams.php @@ -342,6 +342,7 @@ App::post('/v1/teams/:teamId/memberships') 'tokens' => [], 'memberships' => [], 'search' => implode(' ', [$userId, $email, $name]), + 'deleted' => false ]))); } catch (Duplicate $th) { throw new Exception('Account already exists', 409, Exception::USER_ALREADY_EXISTS);