mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
18 lines
480 B
JavaScript
18 lines
480 B
JavaScript
const Setting = require('lib/models/Setting');
|
|
const ItemChange = require('lib/models/ItemChange');
|
|
|
|
class ItemChangeUtils {
|
|
|
|
static async deleteProcessedChanges() {
|
|
const lastProcessedChangeIds = [
|
|
Setting.value('resourceService.lastProcessedChangeId'),
|
|
Setting.value('searchEngine.lastProcessedChangeId'),
|
|
];
|
|
|
|
const lowestChangeId = Math.min(...lastProcessedChangeIds);
|
|
await ItemChange.deleteOldChanges(lowestChangeId);
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = ItemChangeUtils; |