lamassu-server/packages/server/migrations/1649944954805-terms-and-conditions-hash.js
2025-05-12 10:52:54 +01:00

11 lines
197 B
JavaScript

const { saveConfig } = require('../lib/new-settings-loader')
exports.up = function (next) {
return saveConfig({})
.then(next)
.catch(next)
}
exports.down = function (next) {
next()
}