mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
15 lines
301 B
JavaScript
15 lines
301 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 } |