mirror of https://github.com/laurent22/joplin.git
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 }
|