mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
16 lines
318 B
JavaScript
16 lines
318 B
JavaScript
const { Folder } = require('lib/models/folder.js');
|
|
|
|
class FoldersScreenUtils {
|
|
|
|
static async refreshFolders() {
|
|
let initialFolders = await Folder.all({ includeConflictFolder: true });
|
|
|
|
this.dispatch({
|
|
type: 'FOLDER_UPDATE_ALL',
|
|
folders: initialFolders,
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = { FoldersScreenUtils }; |