2018-04-12 21:25:40 +02:00
|
|
|
'use strict'
|
|
|
|
|
2021-04-18 19:02:54 +02:00
|
|
|
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 = {
|
2021-04-18 19:02:54 +02:00
|
|
|
...baseProfile,
|
2018-04-12 21:25:40 +02:00
|
|
|
locale: 'de-LU',
|
|
|
|
timezone: 'Europe/Luxembourg',
|
|
|
|
transformReqBody,
|
|
|
|
|
|
|
|
products: products,
|
|
|
|
|
2021-04-18 22:31:41 +02:00
|
|
|
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,
|
2021-04-18 22:31:41 +02:00
|
|
|
reachableFrom: true,
|
|
|
|
remarksGetPolyline: false,
|
2018-04-12 21:25:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = cflProfile;
|