20 lines
466 B
JavaScript
20 lines
466 B
JavaScript
const _ = require('lodash/fp')
|
|
const { saveConfig, loadLatest } = require('../lib/new-settings-loader')
|
|
|
|
exports.up = function (next) {
|
|
const newConfig = {}
|
|
return loadLatest()
|
|
.then(config => {
|
|
if (!_.isNil(config.config.locale_timezone)) return
|
|
newConfig[`locale_timezone`] = 'GMT'
|
|
return saveConfig(newConfig)
|
|
})
|
|
.then(next)
|
|
.catch(err => {
|
|
return next(err)
|
|
})
|
|
}
|
|
|
|
module.exports.down = function (next) {
|
|
next()
|
|
}
|