mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 23:29:35 +02:00
22 lines
412 B
JavaScript
22 lines
412 B
JavaScript
'use strict'
|
|
|
|
const baseProfile = require('./base.json')
|
|
const products = require('./products')
|
|
|
|
const sbbProfile = {
|
|
...baseProfile,
|
|
locale: 'de-CH',
|
|
timezone: 'Europe/Zurich',
|
|
|
|
products: products,
|
|
|
|
refreshJourneyUseOutReconL: true,
|
|
trip: true,
|
|
radar: true,
|
|
reachableFrom: true,
|
|
}
|
|
|
|
const withLocale = (locale) => ({...sbbProfile, locale})
|
|
|
|
sbbProfile.withLocale = withLocale
|
|
module.exports = sbbProfile
|