1
0
Fork 0
mirror of synced 2024-09-30 17:26:48 +13:00

Merge pull request #7091 from appwrite/fix-missing-functionId-error

fix: missing functionId error on create execution
This commit is contained in:
Christy Jacob 2023-11-07 10:41:55 -08:00 committed by GitHub
commit 888c7bf39c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1658,6 +1658,8 @@ App::post('/v1/functions/:functionId/executions')
->setJWT($jwt)
->setProject($project)
->setUser($user)
->setParam('functionId', $function->getId())
->setParam('executionId', $execution->getId())
->trigger();
return $response