2020-11-18 14:58:25 +01:00
|
|
|
'use strict'
|
|
|
|
|
2021-04-18 19:02:54 +02:00
|
|
|
const baseProfile = require('./base.json')
|
2020-11-18 14:58:25 +01:00
|
|
|
const products = require('./products')
|
|
|
|
|
|
|
|
const sbbProfile = {
|
2021-04-18 19:02:54 +02:00
|
|
|
...baseProfile,
|
2020-11-18 14:58:25 +01:00
|
|
|
locale: 'de-CH',
|
|
|
|
timezone: 'Europe/Zurich',
|
|
|
|
|
|
|
|
products: products,
|
|
|
|
|
2021-04-18 22:31:41 +02:00
|
|
|
departuresGetPasslist: false,
|
|
|
|
departuresStbFltrEquiv: false,
|
|
|
|
refreshJourneyUseOutReconL: true,
|
2020-11-18 14:58:25 +01:00
|
|
|
trip: true,
|
|
|
|
radar: true,
|
|
|
|
reachableFrom: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
const withLocale = (locale) => ({...sbbProfile, locale})
|
|
|
|
|
|
|
|
sbbProfile.withLocale = withLocale
|
|
|
|
module.exports = sbbProfile
|