mirror of
https://github.com/luxfi/pics.git
synced 2026-07-27 05:11:31 +00:00
10 lines
323 B
JavaScript
10 lines
323 B
JavaScript
'use strict';
|
|
|
|
module.exports = async(db, redis) => {
|
|
console.log('remove need for configs/webring');
|
|
const webring = require(__dirname+'/../configs/template.js.example');
|
|
const settings = await redis.get('globalsettings');
|
|
const newSettings = { ...settings, ...webring };
|
|
redis.set('globalsettings', newSettings);
|
|
};
|