db-vendo-client/p/cfl/index.js

29 lines
510 B
JavaScript
Raw Normal View History

2018-04-12 21:25:40 +02:00
'use strict'
const baseProfile = require('./base.json')
2018-04-12 21:25:40 +02:00
const products = require('./products')
2019-10-20 00:19:52 +02:00
const transformReqBody = (ctx, body) => {
2018-04-12 21:25:40 +02:00
body.lang = 'de'
return body
}
const cflProfile = {
...baseProfile,
2018-04-12 21:25:40 +02:00
locale: 'de-LU',
timezone: 'Europe/Luxembourg',
transformReqBody,
products: products,
departuresGetPasslist: false,
departuresStbFltrEquiv: false,
refreshJourneyUseOutReconL: true,
2018-06-10 20:44:12 +02:00
trip: true,
2020-09-16 17:21:59 +02:00
radar: true,
reachableFrom: true,
remarksGetPolyline: false,
2018-04-12 21:25:40 +02:00
}
module.exports = cflProfile;