Skip to content

Commit

Permalink
update adapter SmartHub: add aliases (#11553)
Browse files Browse the repository at this point in the history
  • Loading branch information
SmartHubSolutions committed May 28, 2024
1 parent 7851caf commit 8620ae4
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions modules/smarthubBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,16 @@ import {config} from '../src/config.js';
import {convertOrtbRequestToProprietaryNative} from '../src/native.js';

const BIDDER_CODE = 'smarthub';
const ALIASES = [{code: 'markapp', skipPbsAliasing: true}];
const ALIASES = [
{code: 'markapp', skipPbsAliasing: true},
{code: 'jdpmedia', skipPbsAliasing: true},
{code: 'tredio', skipPbsAliasing: true},
];
const BASE_URLS = {
smarthub: 'https://prebid.smart-hub.io/pbjs',
markapp: 'https://markapp-prebid.smart-hub.io/pbjs'
markapp: 'https://markapp-prebid.smart-hub.io/pbjs',
jdpmedia: 'https://jdpmedia-prebid.smart-hub.io/pbjs',
tredio: 'https://tredio-prebid.smart-hub.io/pbjs'
};

function getUrl(partnerName) {
Expand Down

0 comments on commit 8620ae4

Please sign in to comment.