Merge pull request #1188 from siiky/feat/lam-434/tc-edition

feat: cache the T&C based on their hash
This commit is contained in:
Rafael Taranto 2022-04-28 15:18:17 +01:00 committed by GitHub
commit 1b2d101392
7 changed files with 113 additions and 32 deletions

View file

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