Skip to content

Commit

Permalink
Ventes Bid Adapter: stage Url to production (#8620)
Browse files Browse the repository at this point in the history
* Ventes Avenues initial changes

* Ventes Avenues initial changes

* Stage url to Production url

* Removed duplicate files

* Test specs changes
  • Loading branch information
jessoventes authored Jun 29, 2022
1 parent cb171a2 commit 86399d9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modules/ventesBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {find} from '../src/polyfill.js';
import {registerBidder} from '../src/adapters/bidderFactory.js';

const BID_METHOD = 'POST';
const BIDDER_URL = 'http://13.234.201.146:8088/va/ad';
const BIDDER_URL = 'https://ad.ventesavenues.in/va/ad';

function groupBy(values, key) {
const groups = values.reduce((acc, value) => {
Expand Down
2 changes: 1 addition & 1 deletion modules/ventesBidAdapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
layout: bidder
title: ventes
description: Prebid ventes Bidder Adapter
pbjs: false
pbjs: true
biddercode: ventes
gdpr_supported: false
usp_supported: false
Expand Down
4 changes: 2 additions & 2 deletions test/spec/modules/ventesBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect } from 'chai';
import * as utils from 'src/utils.js';
import { spec } from 'modules/ventesBidAdapter.js';

const BIDDER_URL = 'http://13.234.201.146:8088/va/ad';
const BIDDER_URL = 'https://ad.ventesavenues.in/va/ad';

describe('Ventes Adapter', function () {
const examples = {
Expand Down Expand Up @@ -35,7 +35,7 @@ describe('Ventes Adapter', function () {

serverRequest_banner: {
method: 'POST',
url: 'http://13.234.201.146:8088/va/ad',
url: BIDDER_URL,
data: {
id: 'bid_request_id',
imp: [
Expand Down

0 comments on commit 86399d9

Please sign in to comment.