Skip to content

Commit

Permalink
add SSP Copper6 alias adapter (#9972)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeneGenie committed May 19, 2023
1 parent c43648b commit 69c8db8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions modules/adtelligentBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ const HOST_GETTERS = {
pgam: () => 'ghb.pgamssp.com',
ocm: () => 'ghb.cenarius.orangeclickmedia.com',
vidcrunchllc: () => 'ghb.platform.vidcrunch.com',
'9dotsmedia': () => 'ghb.platform.audiodots.com'
'9dotsmedia': () => 'ghb.platform.audiodots.com',
copper6: () => 'ghb.app.copper6.com'
}
const getUri = function (bidderCode) {
let bidderWithoutSuffix = bidderCode.split('_')[0];
Expand All @@ -51,7 +52,8 @@ export const spec = {
'pgam',
{ code: 'ocm', gvlid: 1148 },
{ code: 'vidcrunchllc', gvlid: 1145 },
'9dotsmedia'
'9dotsmedia',
'copper6',
],
supportedMediaTypes: [VIDEO, BANNER],
isBidRequestValid: function (bid) {
Expand Down
1 change: 1 addition & 0 deletions test/spec/modules/adtelligentBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ const aliasEP = {
'ocm': 'https://ghb.cenarius.orangeclickmedia.com/v2/auction/',
'vidcrunchllc': 'https://ghb.platform.vidcrunch.com/v2/auction/',
'9dotsmedia': 'https://ghb.platform.audiodots.com/v2/auction/',
'copper6': 'https://ghb.app.copper6.com/v2/auction/',
};

const DEFAULT_ADATPER_REQ = { bidderCode: 'adtelligent' };
Expand Down

0 comments on commit 69c8db8

Please sign in to comment.