1
0
Fork 0
mirror of synced 2024-06-29 11:40:45 +12:00

Fix db connection

This commit is contained in:
Eldad Fux 2021-06-06 20:54:01 +03:00
parent f1d75dc805
commit a0be399f0c

View file

@ -52,7 +52,7 @@ App::post('/v1/projects')
/** @var Utopia\Database\Database $dbForInternal */ /** @var Utopia\Database\Database $dbForInternal */
/** @var Utopia\Database\Database $dbForExternal */ /** @var Utopia\Database\Database $dbForExternal */
$team = $dbForInternal->getDocument('teams', $teamId); $team = $dbForConsole->getDocument('teams', $teamId);
if ($team->isEmpty()) { if ($team->isEmpty()) {
throw new Exception('Team not found', 404); throw new Exception('Team not found', 404);