1
0
Fork 0
mirror of synced 2024-09-29 17:01:37 +13:00

Update projectInternalId var

This commit is contained in:
Khushboo Verma 2023-11-14 17:08:09 +05:30
parent be85b173e7
commit 78eb5105e7

View file

@ -730,7 +730,7 @@ class Deletes extends Action
*/
Console::info("Deleting VCS repositories and comments linked to function " . $functionId);
$this->deleteByGroup('repositories', [
Query::equal('projectInternalId', [$projectInternalId]),
Query::equal('projectInternalId', [$project->getInternalId()]),
Query::equal('resourceInternalId', [$functionInternalId]),
Query::equal('resourceType', ['function']),
], $dbForConsole, function (Document $document) use ($dbForConsole) {