Skip to content

Commit

Permalink
Vidazoo Adapter: Feature/spec-gvlid (prebid#5980)
Browse files Browse the repository at this point in the history
* feat(module): multi size request

* fix getUserSyncs
added tests

* update(module): package-lock.json from master

* feat(module): expose spec gvlid

Co-authored-by: roman <shmoop207@gmail.com>
  • Loading branch information
2 people authored and stsepelin committed May 28, 2021
1 parent 8ae7839 commit fea2eb5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions modules/vidazooBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { registerBidder } from '../src/adapters/bidderFactory.js';
import { BANNER } from '../src/mediaTypes.js';
import { getStorageManager } from '../src/storageManager.js';

const GLVID = 744;
const GVLID = 744;
const DEFAULT_SUB_DOMAIN = 'prebid';
const BIDDER_CODE = 'vidazoo';
const BIDDER_VERSION = '1.0.0';
Expand All @@ -24,7 +24,7 @@ export const SUPPORTED_ID_SYSTEMS = {
'pubcid': 1,
'tdid': 1,
};
const storage = getStorageManager(GLVID);
const storage = getStorageManager(GVLID);

export function createDomain(subDomain = DEFAULT_SUB_DOMAIN) {
return `https://${subDomain}.cootlogix.com`;
Expand Down Expand Up @@ -266,6 +266,7 @@ export function tryParseJSON(value) {

export const spec = {
code: BIDDER_CODE,
gvlid: GVLID,
version: BIDDER_VERSION,
supportedMediaTypes: [BANNER],
isBidRequestValid,
Expand Down

0 comments on commit fea2eb5

Please sign in to comment.