16 lines
261 B
JavaScript
16 lines
261 B
JavaScript
|
|
||
|
const settings_config = {
|
||
|
default_settings: [
|
||
|
{
|
||
|
key: 'in_draft_stage',
|
||
|
value: true,
|
||
|
},
|
||
|
{
|
||
|
key: 'current_week',
|
||
|
value: 1,
|
||
|
},
|
||
|
],
|
||
|
}
|
||
|
|
||
|
module.exports = exports = settings_config
|