mirror of
https://github.com/laurent22/joplin.git
synced 2025-01-02 12:47:41 +02:00
16 lines
302 B
JavaScript
16 lines
302 B
JavaScript
import { Folder } from 'lib/models/folder.js'
|
|
|
|
class FoldersScreenUtils {
|
|
|
|
static async refreshFolders() {
|
|
let initialFolders = await Folder.all({ includeConflictFolder: true });
|
|
|
|
this.dispatch({
|
|
type: 'FOLDERS_UPDATE_ALL',
|
|
folders: initialFolders,
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
export { FoldersScreenUtils } |