mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 00:49:02 +00:00
PR review changes
This commit is contained in:
parent
9619d59a13
commit
56a43c8f74
1 changed files with 1 additions and 1 deletions
|
|
@ -1107,7 +1107,7 @@ App::post('/v1/functions/:functionId/deployments')
|
|||
->inject('queueForBuilds')
|
||||
->action(function (string $functionId, ?string $entrypoint, ?string $commands, mixed $code, mixed $activate, Request $request, Response $response, Database $dbForProject, Event $queueForEvents, Document $project, Device $deviceForFunctions, Device $deviceForLocal, Build $queueForBuilds) {
|
||||
|
||||
$activate = \strval($activate === 'true') || \strval($activate) === '1';
|
||||
$activate = \strval($activate) === 'true' || \strval($activate) === '1';
|
||||
|
||||
$function = $dbForProject->getDocument('functions', $functionId);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue