From d52d905211b1896a0bb2d7d70a2506031fa7bda1 Mon Sep 17 00:00:00 2001 From: angelamerkelprebid <69318193+angelamerkelprebid@users.noreply.github.com> Date: Thu, 6 Aug 2020 14:54:48 -0400 Subject: [PATCH] Update merkleIdSystem.js add consentData as param to getId --- modules/merkleIdSystem.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/merkleIdSystem.js b/modules/merkleIdSystem.js index a34bdc9d466..8a7512da5b6 100644 --- a/modules/merkleIdSystem.js +++ b/modules/merkleIdSystem.js @@ -31,9 +31,10 @@ export const merkleIdSubmodule = { * performs action to obtain id and return a value in the callback's response argument * @function * @param {SubmoduleParams} [configParams] + * @param {ConsentData} [consentData] * @returns {IdResponse|undefined} */ - getId(configParams) { + getId(configParams, consentData) { if (!configParams || typeof configParams.pubid !== 'string') { utils.logError('User ID - merkleId submodule requires a valid pubid to be defined'); return;