1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-06 09:19:22 +02:00

All: Resolves #1877: Add search filters (#3213)

This commit is contained in:
Naveen M V
2020-08-08 04:43:21 +05:30
committed by GitHub
parent 3253146dae
commit f99f3f8a6d
27 changed files with 1715 additions and 88 deletions

View File

@@ -0,0 +1,9 @@
const SearchEngine = require('lib/services/searchengine/SearchEngine');
const script = {};
script.exec = async function() {
await SearchEngine.instance().rebuildIndex();
};
module.exports = script;