Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "MinuteMedia Bid Adapter: support Coppa param" #26

Merged
merged 1 commit into from
Apr 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions modules/minutemediaBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -428,9 +428,5 @@ function generateGeneralParams(generalObject, bidderRequest) {
generalParams.page_url = deepAccess(bidderRequest, 'refererInfo.page') || window.location.href
}

if (config.getConfig('coppa') === true) {
generalParams.coppa = 1;
}

return generalParams
}
14 changes: 0 additions & 14 deletions test/spec/modules/minutemediaBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,20 +293,6 @@ describe('minutemediaAdapter', function () {
expect(request.data.bids[0]).to.be.an('object');
expect(request.data.bids[0]).to.have.property('floorPrice', 1.5);
});

describe('COPPA param', function () {
it('should add COPPA param to payload when COPPA equal to true', function () {
config.setConfig({ coppa: true });
const request = spec.buildRequests(bidRequests, bidderRequest);
expect(request.data.params.coppa).to.equal(1);
});

it('should not add COPPA param to payload when prebid config has parameter COPPA equal to false', function () {
config.setConfig({ coppa: false });
const request = spec.buildRequests(bidRequests, bidderRequest);
expect(request.data.params.coppa).to.be.undefined;
});
})
});

describe('interpretResponse', function () {
Expand Down