cartodb-4.42/lib/assets/test/spec/fixtures/dashboard/config-model.fixture.js

12 lines
324 B
JavaScript
Raw Normal View History

2024-04-06 13:25:13 +08:00
const ConfigModel = require('dashboard/data/config-model');
// Config model might as well be a singleton
const theConfig = new ConfigModel({
sql_api_template: 'http://{user}.wadus.com',
common_data_user: 'rick',
account_host: 'wadus.com',
maps_api_template: 'http://localhost:9000'
});
module.exports = theConfig;