mirror of
https://github.com/luxfi/pics.git
synced 2026-07-27 05:11:31 +00:00
11 lines
247 B
JavaScript
11 lines
247 B
JavaScript
'use strict';
|
|
|
|
module.exports = async(db) => {
|
|
console.log('adding markdown db entry for fortune example');
|
|
await db.collection('globalsettings').updateOne({ _id: 'globalsettings' }, {
|
|
'$set': {
|
|
'permLevels.markdown.fortune': 0
|
|
}
|
|
});
|
|
};
|