mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
b912768923
* feat: move secrets to settings * feat: Add better support for detailed db options. Added db field in options to allow better control of db-options. Especially important to allow special chars in database password which might lead to an invaid url when defined as a database-url. * fix: integrate logger with knex logger * fix: remove secret option from all examples * fix: more options.js unit tests * fix: added settings-store e2e tests
22 lines
472 B
JavaScript
22 lines
472 B
JavaScript
/* eslint camelcase: "off" */
|
|
'use strict';
|
|
|
|
const crypto = require('crypto');
|
|
|
|
const settingsName = 'unleash.secret';
|
|
|
|
exports.up = function(db, cb) {
|
|
const secret = crypto.randomBytes(20).toString('hex');
|
|
|
|
db.runSql(
|
|
`
|
|
INSERT INTO settings(name, content)
|
|
VALUES('${settingsName}', '${JSON.stringify(secret)}')`,
|
|
cb
|
|
);
|
|
};
|
|
|
|
exports.down = function(db, cb) {
|
|
db.runSql(`DELETE FROM settings WHERE name = '${settingsName}'`, cb);
|
|
};
|