mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 15:19:35 +02:00
20 lines
346 B
JavaScript
20 lines
346 B
JavaScript
'use strict'
|
|
|
|
const baseProfile = require('./base.json')
|
|
const products = require('./products')
|
|
|
|
const svvProfile = {
|
|
...baseProfile,
|
|
locale: 'at-DE',
|
|
timezone: 'Europe/Vienna',
|
|
|
|
products,
|
|
|
|
trip: true,
|
|
refreshJourney: true,
|
|
reachableFrom: true,
|
|
departuresGetPasslist: false,
|
|
departuresStbFltrEquiv: false,
|
|
}
|
|
|
|
module.exports = svvProfile
|