1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-02-07 19:30:04 +02:00
joplin/ReactNativeClient/lib/folders-screen-utils.js
2017-11-03 00:13:17 +00:00

16 lines
319 B
JavaScript

const { Folder } = require('lib/models/folder.js');
class FoldersScreenUtils {
static async refreshFolders() {
let initialFolders = await Folder.all({ includeConflictFolder: true });
this.dispatch({
type: 'FOLDERS_UPDATE_ALL',
folders: initialFolders,
});
}
}
module.exports = { FoldersScreenUtils };