1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/packages/lib/migrations/33.js

10 lines
209 B
JavaScript
Raw Normal View History

const SearchEngine = require('../services/searchengine/SearchEngine').default;
const script = {};
script.exec = async function() {
await SearchEngine.instance().rebuildIndex();
};
module.exports = script;