fix: bulk secret create

This commit is contained in:
Daniel Hougaard
2025-02-19 09:41:52 +04:00
parent 281cedf1a2
commit 1ff615913c

View File

@@ -1400,7 +1400,7 @@ export const secretV2BridgeServiceFactory = ({
const secs = await secretDAL.find(
{
$in: {
id: createdSecrets.map((el) => el.id)
[`${TableName.SecretV2}.id` as "id"]: createdSecrets.map((el) => el.id)
}
},
{ tx }