1
0
Fork 0
mirror of synced 2024-09-28 23:41:23 +12:00

fix: Addressing review

This commit is contained in:
Binyamin Yawitz 2024-08-08 10:03:10 -04:00
parent 844ec11bd3
commit 01f27874b2
No known key found for this signature in database
3 changed files with 1 additions and 4 deletions

View file

@ -341,11 +341,10 @@ App::delete('/v1/teams/:teamId')
->inject('response')
->inject('getProjectDB')
->inject('dbForProject')
->inject('dbForConsole')
->inject('queueForDeletes')
->inject('queueForEvents')
->inject('project')
->action(function (string $teamId, Response $response, callable $getProjectDB, Database $dbForProject, Database $dbForConsole, Delete $queueForDeletes, Event $queueForEvents, Document $project) {
->action(function (string $teamId, Response $response, callable $getProjectDB, Database $dbForProject, Delete $queueForDeletes, Event $queueForEvents, Document $project) {
$team = $dbForProject->getDocument('teams', $teamId);

View file

@ -65,7 +65,6 @@ $image = $this->getParam('image', '');
- appwrite-config:/storage/config:rw
- appwrite-certificates:/storage/certificates:rw
- appwrite-functions:/storage/functions:rw
- appwrite-builds:/storage/builds:rw
depends_on:
- mariadb
- redis

View file

@ -76,7 +76,6 @@ services:
- appwrite-config:/storage/config:rw
- appwrite-certificates:/storage/certificates:rw
- appwrite-functions:/storage/functions:rw
- appwrite-builds:/storage/builds:rw
- ./phpunit.xml:/usr/src/code/phpunit.xml
- ./tests:/usr/src/code/tests
- ./app:/usr/src/code/app