PHRAS-3422 change assetId

This commit is contained in:
aynsix
2021-04-26 11:59:51 +03:00
parent 61e3c71d4f
commit 2340fd6a39
2 changed files with 12 additions and 3 deletions

View File

@@ -126,11 +126,11 @@ class ExposeUploadWorker implements WorkerInterface
}
}
$instanceKey = $this->app['conf']->get(['main', 'key']);
$phraseanetLocalKey = $this->app['conf']->get(['phraseanet-service', 'phraseanet_local_key']);
// this is the unique reference for record in phraseanet and assets in expose
// instanceKey_basedID_record_id
$assetId = $instanceKey.'_'.$record->getId();
// phraseanetLocalKey_basedID_record_id
$assetId = $phraseanetLocalKey.'_'.$record->getId();
$requestBody = [
'publication_id' => $payload['publicationId'],