2020-11-08 18:34:50 +00:00
|
|
|
/*
|
|
|
|
* Configuration specifying the default values for database-driven
|
|
|
|
* game play settings.
|
|
|
|
*/
|
2020-11-07 18:10:19 +00:00
|
|
|
const settings_config = {
|
|
|
|
default_settings: [
|
|
|
|
{
|
2020-11-08 18:34:50 +00:00
|
|
|
// True if the game is in the draft stage.
|
2020-11-07 18:10:19 +00:00
|
|
|
key: 'in_draft_stage',
|
|
|
|
value: true,
|
|
|
|
},
|
|
|
|
{
|
2020-11-08 18:34:50 +00:00
|
|
|
// The current week in the fantasy season
|
2020-11-07 18:10:19 +00:00
|
|
|
key: 'current_week',
|
|
|
|
value: 1,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = exports = settings_config
|