Skip to content

Commit

Permalink
Adttelligent Bid Adapter : add Indicue alias (#10719)
Browse files Browse the repository at this point in the history
* Add indicue adapter

* getter
  • Loading branch information
GeneGenie authored Nov 14, 2023
1 parent c8870c1 commit 683b5e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/adtelligentBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ const HOST_GETTERS = {
janet: () => 'ghb.bidder.jmgads.com',
ocm: () => 'ghb.cenarius.orangeclickmedia.com',
'9dotsmedia': () => 'ghb.platform.audiodots.com',
copper6: () => 'ghb.app.copper6.com'
copper6: () => 'ghb.app.copper6.com',
indicue: () => 'ghb.console.indicue.com',
}
const getUri = function (bidderCode) {
let bidderWithoutSuffix = bidderCode.split('_')[0];
Expand All @@ -44,6 +45,7 @@ export const spec = {
{ code: 'ocm', gvlid: 1148 },
'9dotsmedia',
'copper6',
'indicue',
],
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 @@ -17,6 +17,7 @@ const aliasEP = {
'ocm': 'https://ghb.cenarius.orangeclickmedia.com/v2/auction/',
'9dotsmedia': 'https://ghb.platform.audiodots.com/v2/auction/',
'copper6': 'https://ghb.app.copper6.com/v2/auction/',
'indicue': 'https://ghb.console.indicue.com/v2/auction/',
};

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

0 comments on commit 683b5e6

Please sign in to comment.